Overview: Below is information pertaining to how publishers can integrate with the IRIS.TV Context Script. The Context Script gives publishers you the ability to retrieve contextual information for a given video asset. This If you are a publisher and oversee your ad operations and tech stack, this is meant to be used as a part of your existing ad workflow to send contextual data through your ad server. This documentation will walk through how to add the Context Script and workflows for adding the contextual targeting data to your ad tags.
See example implementation page here: https://ovp.iris.tv/demos/context/iris-context-api.html
...
Excerpt |
---|
Please speak to your IRIS.TV representative for details on these requirements. |
...
client_token: Authentication string associated with each client. This will be provided by IRIS.TV once the content feed is imported.
platform_id: The reference ID for the video asset from the publisher’s CMS.
...
IRIS.TV Context Script is loaded with the page.
The Context Script is initialized.
Call the Context Script with the platform_id for the video asset that is about to play to receive the videos asset’s contextual segments.
Add the contextual segments to the pre-roll ad tag.
This process should be repeated as you iterate through the video playlist.
Excerpt | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Installing the Script
NOTE: The script should be loaded as a high priority to ensure you can receive context information for the pre-roll of the initial videoasset. An example of adding the script to your page HTML:
If you do not want to load the script as a high-priority, there is an event that you can listen to at the global changes to ensure that the context methods are available. An example of setting up that event listener:
Initializing the Script
|
...
Once the script is initialized, you can send in a video an asset ID to receive the context segment on the video. These methods are:
getContext – requests the context information for the video asset ID.
getVideoInfo – requests context category information for the video ID.
...
Parameter for get_context methods:
platform_id: the CMS reference ID of the video. Required.
...
.
...
Where the context field should be added within the ad tag (i.e. in the “cust_params” field in a DFP tag).
getContext
To retrieve the context use the following method:
...
Code Block |
---|
{ platform_id: '6026440620001', context: ["e883d22ce29c85f9e910281d2a410c5bad77a098segment_1", "segment_2"] } |
After the Integration is Complete
Once the integration is complete and you’re receiving contextual segments, move on to Activating Contextual Data in order to add the data into your existing ad workflow.