I need to get the user ID when I input the mail of the user.
Is it possible?
Of course I have an authenticated user who is asking for the mail of a user already created.
I want to retrieve users like
var refer = firebase.auth ().ref ('test@test.com')
refer.on ('value', function (snapshot) {
console.log (snapshot.val());
})
But in a possible way.