hi. i had implemented playback url in html 5 . i am getting this playback url in video assets api.
but i am getting error “playback url need access token”
Gumlet Insights SDK
<video id="my-video" width="640" height="264">
<source src="https://video.gumlet.io/63319326f53e559435f64daf/6332db8861145c0f880be685/main.mp4" type="video/mp4" />
</video>
<script type="text/javascript">
// Player configuration
var playerOptions = {
preload: false
};
// Create the Gumlet Configuration JSON
var gumletConfig = {
property_id: 'RwzUGf3_', // required: please replace with correct property id.
};
var video = document.getElementById('my-video');
var gumletInsights = gumlet.insights(gumletConfig);
gumletInsights.registerHTML5Player(video);
</script>
"this is my code."