What is on Firebase the query to get users email if they signed up using social login?
I'm using javascript, i know how to access database etc. but i'm not personally saving users email address, firebase does that automatically.
What is on Firebase the query to get users email if they signed up using social login?
I'm using javascript, i know how to access database etc. but i'm not personally saving users email address, firebase does that automatically.
There is no client-side API to get a listing of users, as that would make it very easy to leak information about your users.
If you want to expose this information, you have two common options:
Neither is pertinently better in all situations, although I believe the first one is a lot more commonly used.
Also see: