Home > Enterprise >  How to get URL of Images from that are stored in Firebase Storage in specific folder | Androi | Java
How to get URL of Images from that are stored in Firebase Storage in specific folder | Androi | Java

Time:09-13

I uploaded some pictures manually in firebase storage in the specific folder I want to get the URL of all images that are stored in that specific folder. Is there any way I can get the URL of all images?

Note: There are many folders in my firebase storage I just wanted to get images from Driver1 as the screenshot is attached you can clearly see the images I uploaded.

ScreenShot:

enter image description here

CodePudding user response:

You can simply click on the image you want to download and on the right-hand side of the page, a new section will appear, which contains the name of the image. If you click on the name, a new tab in your browser will be opened containing that particular image. You can copy the URL right from there or, at the bottom of this new section, you'll see the "File location". If you click on it, you'll see the "Access token" and if you click again on it, the download URL and the corresponding token will be copied. Then you can paste that into your web browser and you'll see the image.

enter image description here

Edit:

To be able to read or download an image from a Cloud Storage URL, please check the official documentation:

Since you're using Android, I also recommend you a library called Glide for Android.

  • Related