-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Parse api password reset #454
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
Javascript sdk have same problem, so does cloud function. Here is Javascript code, run on node.js 4.2.4 var Parse = require('parse/node').Parse; var query = new Parse.Query(Parse.User); I get { code: 101, message: 'Object not found.' } I can query this user, but cannot setPassword with masterKey. My api server log with VERBOSE=1 PUT /parse/classes/User/userId { 'user-agent': 'node-XMLHttpRequest, Parse/js1.7.0 (NodeJS 4.2.4)', |
I get the same error as well |
Once change password, it will clear all sessions. If no session found, will get object not found. Can I use legacy token and without any _Session? |
@drew-gross trouble shooter, see the related PR, seems that the use case is actually not failing. |
That PR doesn't use |
|
@drew-gross updated with
still not failing... |
@flovilmart PR 476 will avoid it failed. BTW. |
OK I'm closing the PR as the troubleshoot really don't get us anywhere near the problem. |
This does sound like an issue caused by not having revocable sessions in your original parse app. Parse Server currently doesn't support old-style sessions. We would welcome any PRs that help work around that problem, though. |
Hi All,
I have parse server set up in my own domain. I am trying the custom password reset functionality like below using rest api. Every other field update works other than the password field. Could you guide me how i can resolve this. I am using the master key.
app.get("/updatepassword", function(req, res) {
});
The text was updated successfully, but these errors were encountered: