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

问题描述 投票:2回答:1

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

  firebase.auth().sendPasswordResetEmail 
firebase react-native firebase-authentication react-native-android
1个回答
13
投票

 forgotPassword = (Email) => {
    firebase.auth().sendPasswordResetEmail(Email)
      .then(function (user) {
        alert('Please check your email...')
      }).catch(function (e) {
        console.log(e)
      })
  }

应该通过电子邮件发送此忘记密码的方法。

© www.soinside.com 2019 - 2024. All rights reserved.