如何在React Native中重置Firebase身份验证密码

Stv*_*lam 1 firebase react-native firebase-authentication react-native-android

我想知道如何在我的本机项目中重置Firebase电子邮件身份验证密码的密码。我想发送一封电子邮件以重置密码。如何使用以下方法做到这一点

  firebase.auth().sendPasswordResetEmail 
Run Code Online (Sandbox Code Playgroud)

Tan*_*ker 12

 forgotPassword = (yourEmail) => {
    firebse.auth().sendPasswordResetEmail(yourEmail)
      .then(function (user) {
        alert('Please check your email...')
      }).catch(function (e) {
        console.log(e)
      })
  }
Run Code Online (Sandbox Code Playgroud)

对于这种忘记密码的方法,应通过电子邮件发送。