如何使用parse api重置密码?

时间:2014-04-03 06:32:05

标签: ios parsing passwords reset

我使用parse api作为服务提供商和数据中心,所以我的所有用户信息都存储在解析服务器中,现在我想在我的ios应用程序中添加一项功能,用于重置密码但不知道如何重置使用parse api的密码。

任何人都可以帮忙知道如何使用parse api重置用户的密码?

1 个答案:

答案 0 :(得分:3)

        PFUser.requestPasswordResetForEmailInBackground(emailTextField.text, block: { (succeeded: Bool, error: NSError?) -> Void in
            if error == nil {
                if succeeded { // SUCCESSFULLY SENT TO EMAIL
                           println("Reset email sent to your inbox");
                }
                else { // SOME PROBLEM OCCURED
                }
            }
            else { //ERROR OCCURED, DISPLAY ERROR MESSAGE
                 println(error!.description);
            }
        });