Integrate VideoManager UI into your own application
  • 17 Jan 2024

Integrate VideoManager UI into your own application


The content is currently unavailable in German. You are viewing the default English version.
Artikel-Zusammenfassung

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

  1. 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 username

    • password: Your VideoManager password

    • videoManagerId: (optional) The ID of the VideoManager instance you want to integrate with

    The response will be a JSON object containing the UI integration token.

  2. 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.


War dieser Artikel hilfreich?