Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Google users not showing in Firebase Console Authentication

Using Firebase Google Auth, when a user logs in successfully with their google account, they are not showing on our Firebase Console Authentication->Users screen. Only email/password users are showing up there.

Is there something extra that needs to be done to see the Google Auth users?

like image 321
MBU Avatar asked Jul 06 '17 16:07

MBU


People also ask

How can I get user details from Firebase?

If the user login with a custom "email/password" you don't know anything else about that user (apart from the unique user id). If a user login with Facebook, or with Google sign in, you can get other information like the profile picture url. It is explained here: firebase.google.com/docs/auth/android/… .

How do I enable Google Firebase login?

Enable Google as a sign-in method in the Firebase console: In the Firebase console, open the Auth section. On the Sign in method tab, enable the Google sign-in method and click Save.

Where are Firebase users?

Firebase does not store profile or user state in your Firebase instance. To persist user data you must save it to your Firebase. Using existing social login providers such Facebook, Twitter, Google, and GitHub.


1 Answers

As indicated by Frank, to fully sign into Firebase the call to signInWithCredential() was needed. After implementing this functionality, users signing in with Google showed up in the Firebase console.

like image 115
MBU Avatar answered Oct 02 '22 14:10

MBU