It possible to get the user id without logging in using firebase authentication API "email/password method"?
Let suppose a function take email as param and return firebase userId
getId(email){
//this is an example
return this.firebase.auth.getId(email); // this method is not firebase method i wrote just for explication
}
I need the User UID in the picture above without logging in. (without current user).
Thanks.