Has anyone successfully been able to retrieve the session token on a private video? All of my attempts result in a 403 Forbidden response.
curl --request GET \
--url https://vod.api.video/vod/${MY_VIDEO_ID}/token/${RETRIEVED_VIDEO_TOKEN}/session \
--header 'accept: application/json' \
--user '${MY_API_KEY}:'
But I consistently receive back the 403 response:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<h1>Error 403 Forbidden</h1>
<p>Forbidden</p>
<h3>Error 54113</h3>
<p>Details: cache-chi-kigq8000091-CHI 1726157393 3258205936</p>
<hr>
<p>Varnish cache server</p>
</body>
</html>
Has anyone run into this before?