Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where do I find "bucket" details for Firebase setup?

For configuring my firebase connection I need to include bucket details.

storageBucket: "<BUCKET>.appspot.com",

Where do I find this?

like image 753
Artem Yevtushenko Avatar asked Nov 08 '16 14:11

Artem Yevtushenko


People also ask

How do I get a bucket name in Google Cloud?

In the Google Cloud console, go to the Cloud Storage Buckets page. In the bucket list, find the bucket you want to verify, and check its column headers for the metadata you want to view.

Where is Storage tab in Firebase console?

From the navigation pane of the Firebase console, select Storage, then click Get started. Review the messaging about securing your Cloud Storage data using security rules. During development, consider setting up your rules for public access. Select a location for your default Cloud Storage bucket.

How do I reference Firebase Storage?

To create a reference, get an instance of the Storage service using getStorage() then call ref() with the service as an argument. This reference points to the root of your Cloud Storage bucket.


1 Answers

You can find the bucket ID in the Storage panel of your project's Firebase Console:

Storage Panel of the Firebase Console

It's the value starting with gs://.

like image 103
Frank van Puffelen Avatar answered Oct 16 '22 13:10

Frank van Puffelen