is it possible to get User UID of any user just using phone number
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
Yes, you need the Firebase Admin SDK.
admin.auth().getUserByPhoneNumber("+213666666666")
.then((userRecord) => console.log(userRecord))
.catch((error) => console.error(error));
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