Integrate VideoManager UI into your own application
- 17 Jan 2024
- Print
Integrate VideoManager UI into your own application
- Updated on 17 Jan 2024
- Print
Article summary
Did you find this summary helpful?
Thank you for your feedback
Description
You can integrate the VideoManager UI into your own application without having to log into VideoManager separately. To do this, you need to get a valid UI integration token.
Steps
Get a UI integration token
Use the POST method
/v1/vms/auth/uiintegration
to retrieve a valid UI integration token. Include the following information in the body of your request:{ "username": "<YOUR_USERNAME>", "password": "<YOUR_PASSWORD>", "videoManagerId": 10 }
username
: Your VideoManager usernamepassword
: Your VideoManager passwordvideoManagerId
: (optional) The ID of the VideoManager instance you want to integrate with
The response will be a JSON object containing the UI integration token.
Open VideoManager without logging in
Use the following URL to open VideoManager without logging in, including the returned token:
https://vmpro.movingimage.com/#/uiintegration?uiIntegrationToken={{urlEncodedToken}}
Ensure that the token is URL encoded.
Was this article helpful?