We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We use GitHub Issues for bugs.
If you have a non-bug question, ask on Stack Overflow or Server Fault:
You may also search through existing issues before opening a new one: https://github.com/ParsePlatform/Parse-Server/issues?utf8=%E2%9C%93&q=is%3Aissue
--- Please use this template. If you don't use this template, your issue may be closed without comment. ---
Describe your issue in as much detail as possible.
ParseSession.getCurrentSessionInBackground(new GetCallback<ParseSession>() { public void done(ParseSession ps, ParseException e) { if (e == null) { ps.put("device", Build.MODEL); ps.put("app", getPackageName()); Calendar cal = Calendar.getInstance(); cal.add(Calendar.MINUTE, 15); ps.put("expiresAt", Calendar.getInstance()); ps.saveEventually(new SaveCallback() { public void done(ParseException e) { if (e == null) { Log.i(TAG, "parse session sucesse"); } else { Log.i(TAG, "parse session not sucess"); } } }); } else { Log.i(TAG, "cant get parse session"); } } });
Please include a detailed list of steps that reproduce the issue. Include curl commands when applicable.
What you expected to happen.
What is happening instead. "User cannot modify readonly attribute: exipresAt"
Server
Database
Include all relevant logs. You can turn on additional logging by configuring VERBOSE=1 in your environment.
The text was updated successfully, but these errors were encountered:
That's the expected behavior.
Sorry, something went wrong.
No branches or pull requests
We use GitHub Issues for bugs.
If you have a non-bug question, ask on Stack Overflow or Server Fault:
You may also search through existing issues before opening a new one: https://github.com/ParsePlatform/Parse-Server/issues?utf8=%E2%9C%93&q=is%3Aissue
--- Please use this template. If you don't use this template, your issue may be closed without comment. ---
Issue Description
Describe your issue in as much detail as possible.
Steps to reproduce
ParseSession.getCurrentSessionInBackground(new GetCallback<ParseSession>() { public void done(ParseSession ps, ParseException e) { if (e == null) { ps.put("device", Build.MODEL); ps.put("app", getPackageName()); Calendar cal = Calendar.getInstance(); cal.add(Calendar.MINUTE, 15); ps.put("expiresAt", Calendar.getInstance()); ps.saveEventually(new SaveCallback() { public void done(ParseException e) { if (e == null) { Log.i(TAG, "parse session sucesse"); } else { Log.i(TAG, "parse session not sucess"); } } }); } else { Log.i(TAG, "cant get parse session"); } } });
Please include a detailed list of steps that reproduce the issue. Include curl commands when applicable.
Expected Results
What you expected to happen.
Actual Outcome
What is happening instead.
"User cannot modify readonly attribute: exipresAt"
Environment Setup
Server
Database
Logs/Trace
Include all relevant logs. You can turn on additional logging by configuring VERBOSE=1 in your environment.
The text was updated successfully, but these errors were encountered: