Is it feasible to retrieve the user id from Firebase authentication API "email/password method" without logging in?
Imagine a function that takes an email as a parameter and returns the firebase userId.
getId(email){
//this is just an example
return this.firebase.auth.getId(email); // this method is not actually a Firebase method, I wrote it for clarification
}
https://i.stack.imgur.com/G7MDf.png I am looking to obtain the User UID shown in the image above without logging in (without the current user).
Thank you.