Firebase Auth Internal Error on Login Attempt

Firebase Auth Internal Error on login attempt

Based on the limited code you provided, it looks like you are using Firebase version 3.11.0 and FirebaseAuth version 3.1.1. As of the most recent update to Firebase, the Sign In With Email function is no longer functional. In order to resolve this issue, you are going to have to update Firebase and FirebaseAuth to their latest versions (6.2.0 and 6.1.1 respectively).

In order to update your pods, go to your project folder in terminal and type pod update. This process may take a few minutes (depending on your computer and connectivity). After your pods have been updated, resolve all the compilation errors and you should be all set!

Hope this helps!

How do I fix signin error with firebase authentication

That error means that The API Key that you are using is uncorrect or invalid.

  1. Check correctly for the The API Key and copy it correctly and slowly
    beacause you might copied it wrong. Also copy it from Firebase Console.

  2. If you have more than one API Key (Or more than Firebase project or Google
    Cloud project) You might conflicted between them which might create this
    problem.

  3. Try REGENERATE KEY in Google Cloud Console like this screenshoot :

Google Cloud Console


  1. Go to Firebase Console then go to Authorized domain and add the Live Server (Domain) that you are using like localhost:

This is all possible solutions to solve this problem.

Big Thanks for this Thread.

firebase v3 - google auth internal-error

I would recommend importing your project in the Firebase Console rather than configuring keys manually if possible, but appreciate there are some cases where that isn't ideal.

For the API key, try switching to the "Browser" type key rather than the "Server" one for anything running in the browser, and make sure it is approved for the domain you are using.

Google Sign In will need a client ID as well. The easiest way to implement is to use the signInWithPopUp method, but there are instructions for manually configuring the Google Sign In lib too.

If you do need to create a client ID, you can see the full instructions in the Google Sign In documentation.

Error: auth/configuration-not .An internal error has occurred

You got this error because you haven't enabled Authentication mode in FireStore console e.g. Email-Password etc.

Internal Error when creating new user with Firebase Auth in React

First, I suggest you to choose between using async/await or then to handle promises.

Second, you can use createUserWithEmailAndPassword return value, as such:

const userCredentials = await app.auth().createUserWithEmailAndPassword(email.value, password.value);
const user = userCredentials.user;
await user.updateProfile({ displayName: fullName });

The relevant documentation: https://firebase.google.com/docs/reference/js/firebase.auth.Auth#createuserwithemailandpassword



Related Topics



Leave a reply



Submit