-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
com.parse.ParseRequest$ParseRequestException: invalid key name: 0 #68
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
Hmm not sure but this feels like an error somewhere in your code. Can you reproduce this in a unit test? |
@lacker I am also getting the error. I login with Facebook and then try to execute any query and keep on getting this error. {"code":105,"error":"invalid key name: 0"} |
app.js`express = require('express'); });`
Running tests |
The problem seems to be due to JSON handling. but the parse-server returns an error. Changing the above JSON to the following is successful |
Reported similar issue observed on the Android-SDK side. parse-community/Parse-SDK-Android#383 . Not sure if this is a client side sdk or parse-server |
Merged #105 and hope this is fixed. 👍 |
test passed 👍 |
Added enable/disable Parse curl exceptions
How can I have the parse-server-example package that fixed this? |
Hello, I am having the same issue ParseRequestException invlaid key name. Read through this issue and the other issue #105 yet couldn't fix the issue. Am using android sdk version 1.13.1 Please can you help? |
Added android equivalent code of Parse.initialize()
i got a exception as title(on android).it works with parse.com.
houseQuery.whereEqualTo("Customer", CloudCustomer.getCurrent()); houseQuery.findInBackground(new FindCallback<CloudHouse>() { @Override public void done(List<CloudHouse> houses, ParseException e) { if (houses==null) e.printStackTrace(); });
The text was updated successfully, but these errors were encountered: