Home > Enterprise >  Can I add google authenticated user to users list in firebase?
Can I add google authenticated user to users list in firebase?

Time:10-18

I am creating an app in Xamarin using firebase for the login and I would like it for users to sign up with email or google. If I sign them up via email they get added to this list of users:

firebase users list

But when I authenticate them via google then do not get added to this list. Is there a way to enable this? I would like to later use the uid's in this list to store data per user and that is why I want them all in 1 list.

CodePudding user response:

When a user that signed in with Google, then uses their Google credentials to sign in with Firebase, their profile does show up in the Firebase console with a colored G icon.

For example, here's a list of some users from one of my projects:

enter image description here

The first user is an email password user, then there are 3 anonymous users, and then there's a user that signed in with their Google account.

If the Google user does not show up for you, make sure you signed them in to Firebase too.

  • Related