-
-
Notifications
You must be signed in to change notification settings - Fork 205
Does Parse sdk support to do forgot password? #269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hey
What's the difference?
…On Tue, Sep 10, 2019, 03:06 hautran90 ***@***.***> wrote:
Hi @channel <https://github.com/channel>. Does Parse sdk support to do
forgot password? I only find it supported requestPasswordRese. Thanks all!
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#269>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AB4CPXSGDRPCRQEC2GUUIBLQI36KPANCNFSM4IVB7XRA>
.
|
I have this issue as well. |
@Atteprojects Future<ApiResponse> recoveryPassword(String email) async {
final ParseUser user = ParseUser(email.toLowerCase(), '', email);
final ParseResponse parseResponse = await user.requestPasswordReset();
if (parseResponse.success) {
return ApiResponse.success();
} else {
return ApiResponse.error(
error: ApiError(
code: parseResponse.error.code,
message: ParseErrors.getDescription(parseResponse.error.code)));
}
} |
This is very helpful. Thank you very much! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @channel. Does Parse sdk support to do forgot password? I only find it supported requestPasswordRese. Thanks all!
The text was updated successfully, but these errors were encountered: