Skip to content

Instantly share code, notes, and snippets.

@shaffeeullah
Last active October 17, 2023 07:50
Show Gist options
  • Save shaffeeullah/06f99a606642d110ff3aef29c42e3239 to your computer and use it in GitHub Desktop.
Save shaffeeullah/06f99a606642d110ff3aef29c42e3239 to your computer and use it in GitHub Desktop.
Use Cloud Storage signed URL with Express.js
app.get('/', async (req, res) => {
// Get signed URL with action 'read'
const signedUrl = await getReadSignedUrl(bucketName, videoName, 10);
let output = `<video width="400" controls>
<source src=${signedUrl} type="video/mp4">
</video>`
res.send(output);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment