Hello,
what is the best way to retrieve the playback tokens of private videos?
I currently fetch them by GETting https://ws.api.video/videos/{videoId}
and splitting the player URI on =
like so
token = response.assets.player.split('=')[1]
This works but feels a bit hacky… is there a more robust/elegant way to do it?
It may be nice to send the token in /videos/{videoId}
response if public = false
.