Reputation: 7158
im wondering if its possible to create a temporary serving url for files on Google Cloud Storage.
i have a GAE app and i would like to serve bigger video files over google storage for develpers without 'straming' the files over my appengine app like here.
i would like to have a temporary seving url in my page which gets generated on request to avoid other pages to embed the videos. is that possible on on google storage? what is the best way to do this?
thx
Upvotes: 3
Views: 4474
Reputation: 341
Try Signed URLs
Each signed url can be set a expired time from 15 minutes to 7 days.
This should work for you.
Upvotes: 1
Reputation: 3121
Take a look Google Cloud Storage's signed urls feature:
Can I do a resumable upload with a Google Cloud Storage signed URL?
Upvotes: 1