Skip to main content

videos_content_tokens

Creates, updates, deletes, gets or lists a videos_content_tokens resource.

Overview

Namevideos_content_tokens
TypeResource
Idazure.video_analyzer.videos_content_tokens

Fields

NameDatatypeDescription
expirationDatestringThe content token expiration date in ISO8601 format (eg. 2021-01-01T00:00:00Z).
tokenstringThe content token value to be added to the video content URL as the value for the "token" query string parameter. The token is specific to a single video.

Methods

NameAccessible byRequired ParamsDescription
listSELECTaccountName, resourceGroupName, subscriptionId, videoNameGenerates a streaming token which can be used for accessing content from video content URLs, for a video resource with the given name.

SELECT examples

Generates a streaming token which can be used for accessing content from video content URLs, for a video resource with the given name.

SELECT
expirationDate,
token
FROM azure.video_analyzer.videos_content_tokens
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND videoName = '{{ videoName }}';