react-firebase
react-firebase copied to clipboard
HTTP Error: 403, The caller does not have permission
Following the steps on README I`m facil the error "HTTP Error: 403, The caller does not have permission" when I'm trying to "firebase init"
Copy your config from your dashboard's Develop -> Authentication -> Web Setup and replace sample config on src/firebase.js
file after cloning this sample project.
Try removing " .firebaserc " file and " firebase.json " file
then do " firebase init "
then select whatever options you want
I had a similar issue. I was actually signed into a different Firebase account in my CLI. After running firebase logout
and firebase login
with the correct Firebase account it worked fine.
I had this issue when trying to add a new project, I edited firebaserc manually and forgot I had to run firebase use --add
instead.
I had this issue when trying to add a new project, I edited firebaserc manually and forgot I had to run
firebase use --add
instead.
This Works for me thanks @EliasTouil
I had this issue when trying to add a new project, I edited firebaserc manually and forgot I had to run
firebase use --add
instead.
Thank you for the help! This solution worked for me.
So none of the above solutions worked for me, but what DID work was:
1.Go to firebase.com in the browser, click "go to console" and start the project from there 2.In command line, run firebase init functions again and select "use existing project"
This time the project came up and firebase init functions ran to completion