Domain Control
Domain control limits the content delivery to authorized domains, ensuring that your content is only accessible on authorized websites and platforms, reducing the risks of unauthorized distribution.
To enable domain control and specify the allowed domains for your VODs, set associate API request body during creation:
Configure the domain_control
request body with the following options:
Query Parameters | Description |
---|---|
enabled | true |
domains | Specify the domains you want to grant the access in the array. |
For example, if you want to restrict your content delivery to only two domains: example.com
and test.com
. You can enable the domain control feature and specify these domains in the request body like this:
"domain_control":{
"enabled":true,
"domains": [
"example.com",
"test.com"
]
}