0
votes

is it possible to get User UID of any user just using phone number

enter image description here

if not how can i get user UID just by typing the phone number i mean search on the entire database for specific phone number and if it exist i get the ID

enter image description here

2

2 Answers

1
votes

Yes, you need the Firebase Admin SDK.

admin.auth().getUserByPhoneNumber("+213666666666")
     .then((userRecord) => console.log(userRecord))
     .catch((error) => console.error(error));
0
votes

Yes,You can manage to get the user ID by using firebase auth. You can check this official document for how to manage users in firebase