Skip to main content

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 be public and accessible to all users who visit the website when the AOD's privacy is set to SECURITY_PRIVACY_TYPE_PUBLIC.

Use the following template to create the website URL for the AOD and distribute it to your audience:

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

Query ParametersRequiredDescription
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.
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>"
}