跳到主要内容

Share with On-Demand Website

BlendVision One offers a on-demand website showroom for each of your AODs by default, which you can directly share with your audience for listening the audios.

You have capabilities to customize it as per your preferences, including:

sample

Here is a sample of a public BlendVision One showroom website, feel free to explore it.


Obtain and Distribute the Showroom Website as Your Needs

The showroom will only be accessible with an authorized token when the AOD's privacy is set to SECURITY_PRIVACY_TYPE_TOKEN.

You can manage user authorization in your system by issuing tokens only to users who are authorized according to your business requirements.

To generate the AOD showroom website URLs for your authorized users, use the following template:

https://showroom.one.blendvision.com/showroom?token=resource_token&lang=en&t=0&shareUrl=example.com
AttributesRequiredDescription
resource_tokenRequiredRefer to the steps to obtain the token.
langOptionalLocale (zh, ja, en).
tOptionalThe default timestampe (seconds) to start playback when player initiated.
shareUrlOptionalThe URL to share on social media. If no value provided, the default URL will be set to https://showroom.one.blendvision.com?token=resource_token

Obtain Resource Token

Make a POST request to the API: POST /bv/cms/v1/resources/tokens

FieldRequiredDescription
resource_idRequiredThe unique ID of your content.
resource_typeRequiredThe streaming type of your content.
customer_idOptionalYour custom user ID to identify who is watching the content.
This parameter is required if the content's security privacy is set to SECURITY_PRIVACY_TYPE_TOKEN.
customer_nameOptionalYour custom user name to identify who is watching the content.

Here is an example of a request body:

{
"resource_id": "<resource-id>",
"resource_type": "RESOURCE_TYPE_LIVE",
"customer_id": "<customer-id>",
"customer_name": "<customer-name>"
}