how to reset firebase auth password in react native
问题 I want to know how to reset password of firebase email authentication password in my react-native project . I like to sent an email for resetting the password. How to do that using the following method firebase.auth().sendPasswordResetEmail 回答1: forgotPassword = (Email) => { firebase.auth().sendPasswordResetEmail(Email) .then(function (user) { alert('Please check your email...') }).catch(function (e) { console.log(e) }) } An email should be passed for this forgot password method. 来源: https:/