Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FIREBASE: How do you find your google project number in google firebase?

Tags:

firebase

I can't find the google project number in "General" or "Cloud Messaging". Not much else to say. Ideas?

like image 863
Darren Leung Avatar asked Oct 19 '17 18:10

Darren Leung


People also ask

How do I find my Google project ID?

To locate your project ID: Go to the API Console. From the projects list, select Manage all projects. The names and IDs for all the projects you're a member of are displayed.

How do I find my Google Firebase key?

Firebase automatically creates API keys for your project when you do any of the following: Create a Firebase project > Browser key auto-created. Create a Firebase Apple App > iOS key auto-created. Create a Firebase Android App > Android key auto-created.

How do you create a project ID?

Configure Project ID settings when creating a new Enterprise Project Type in Project Online. On the Project Web App home page, select Server Settings. On the Server Settings page, in the Workflow and Project Detail Pages section, click Enterprise Project Types. Select New Enterprise Project Type.


2 Answers

Go to the Google Developer Console : https://console.developers.google.com

Select Your Project.

Go to Settings and Utilities (3 point dropdown icon left of your profile pic on top right).

Go to Project Settings.

You will get your project number there.

like image 111
Saurabh Agarwal Avatar answered Oct 25 '22 10:10

Saurabh Agarwal


Additionally, you can get it using gcloud CLI using below command:

gcloud projects list --format="table(projectNumber,projectId)" --filter="my-firebase-project"

Replace my-firebase-project with your desired project.

like image 22
Vijay Avatar answered Oct 25 '22 10:10

Vijay