ios – Firebase重置密码Swift

前端之家收集整理的这篇文章主要介绍了ios – Firebase重置密码Swift前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道你们是否可以告诉我如何在 Swift中设置重置密码,我目前正在使用Firebase作为我的后端服务.我只需要代码.

解决方法

答案是在 API documentation

-sendPasswordResetWithEmail:completion:

Initiates a password reset for the given email address.

See 07001 for a list of error codes that are common to all API methods.

在Swift 3.x和Firebase 3.x中,它看起来像这样:

FIRAuth.auth()?.sendPasswordReset(withEmail: "email@email") { error in
    // Your code here
}

编辑:

Firebase 4将Firebase功能更改为与Swift中的命名约定更加一致.

Auth.auth().sendPasswordReset(withEmail: "email@email") { error in
    // Your code here
}
原文链接:https://www.f2er.com/iOS/333378.html

猜你在找的iOS相关文章