How can I get the token of a recorded video once it’s been recorded?
It is very easy to obtain the token of a recorded video using JavaScript:
[code language="javascript"]
ZiggeoApi.Events.on("submitted", function (data) {
alert("Submitted a new video with token '" + data.video.token + "'!");
});
[/code]