Download URL after generating a thumbnail
See original GitHub issueHow can i get an url to download the thumbnail image after it has being uploaded? The code below is used in the example, but i’m not sure how to grab an url from this image.
bucket.upload(tempLocalThumbFile, {
destination: thumbFilePath
}).then(() => {
console.log('Thumbnail uploaded to Storage at', thumbFilePath);
});
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
How to get download url of Thumbnail after firebase resize ...
When you upload an image file to your specified Cloud Storage bucket , this extension: Creates a resized image with your specified ...
Read more >How To Download a YouTube Thumbnail
If you want to download an thumbnail from a YouTube video, there's two ways to do it. The first way works if you're...
Read more >How To Download YouTube Thumbnail Images Without Using ...
This is a brief video tutorial about How To Download YouTube Thumbnail Images Without Using Any Website or App. As a YouTube creator, ......
Read more >How To Download YouTube Video Thumbnail Image (in less ...
URL for downloading someone else's YouTube thumbnail : ... Related Videos How To Create Clickable YouTube Thumbnails Without Photoshop ...
Read more >How to download your video's thumbnail - Vidyard Support
Download your thumbnail image. Copied · Sign in to your Vidyard account · Select a video from your library, then copy the video's...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@rodrigoreal You should be able to use
getDownloadURL
.If you want to do it by hand, ammending the following to the beginning of your file path should work (replace
<- your-bucket-name-here ->
with your actual bucket name):Also, you may want to use the issue template that is provided for this repo, or your issue may be closed.
For others coming to this issue to find a solution, I needed to call
.makePublic()
on the uploaded file as seen below in order to access the object, and then assign it to animg.src
later on: