VidiCore Adobe Extension Theme
Table of Contents | ||||
---|---|---|---|---|
|
Introduction
The VidiCore Adobe Extension Theme shows the capabilities of using content from VidiCore inside of Adobe Premiere Pro. It is written in a boilerplate manner with reactjs, material-ui in order to kick-start feature development for already working VidiCore instances. It also contains debugging tool for easy development.
...
PUT /API/configuration/cors
Code Block | ||
---|---|---|
| ||
<CORSConfigurationDocument xmlns="http://xml.vidispine.com/schema/vidispine"> |
...
<entry>
<request>
<entry> <request> <origin>https://vidispine.github.io/adobe-extension-theme</origin> |
...
</request> |
...
<response>
<response> <allowOrigin>https://vidispine.github.io/adobe-extension-theme</allowOrigin> |
...
<allowMethods>OPTIONS,GET,HEAD,POST,PUT,DELETE</allowMethods> |
...
<allowHeaders>accept,content-type,authorization,index,size,runas</allowHeaders> |
...
<allowMaxAge>600</allowMaxAge> |
...
</response> |
...
</entry> |
Erroneous or missing CORS configuration will render an error in the application login screen
...