I just registered my own domain on GCP and instead, created a new GCP. I wanted to migrate my old GCP to new one. So, I signed in using firebase login:ci
. The new window opened up to choose my account and I used my new assigned account for registered domain on new GCP. Then I run firebase init inside. I got this error after selecting firebase project I created using a new GCP.
Error: HTTP Error: 403, Permission denied to get service [firestore.googleapis.com] Help Token: AWzfkCMe3kI1xtpLJkoCpzQg-sn3fQt7oX8VPut5qpv5cBZcYLNuMwx9Ml1UofnrC9fStBNhbTPnPBJlx-jiM4Br3U-pBp91mmYWnqnrOxClIEQY
2
Answers
As mentioned by @Dharmaraj you can use
firebase login
to Log into Firebase using your Google account. This command connects your local machine to Firebase and grants you access to your Firebase projects.The
firebase login:ci
command is used for authentication in CI pipelines. To authenticate yourself to for Firebase CLI, usefirebase login
.Checkout the documentation for more information.