Skip to content

Instantly share code, notes, and snippets.

@seemcat
Last active September 14, 2018 18:16
Show Gist options
  • Save seemcat/cb0f833f3a1992738d7824858a787c37 to your computer and use it in GitHub Desktop.
Save seemcat/cb0f833f3a1992738d7824858a787c37 to your computer and use it in GitHub Desktop.
// server.js
app.get('/videoTokens', (req, res) => {
ZiggeoSdk.Videos.index({}, (vidInfos) => {
const videos = vidInfos.reduce((acc, vidInfo) => {
acc.push(vidInfo.token);
return acc;
}, []);
res.send(videos);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment