-
-
Notifications
You must be signed in to change notification settings - Fork 32
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
subscribe Error #93
Comments
Did you initialized parse with your API key ? |
Sure. I did initialization in my custom application. So I used the cloud call! |
You should only need
This is source of the error triggered in the server It seem to be an issue with the valid keys you are using. @flovilmart Is it an issue why the parse live query server configuration? Why would it expect a list of valid keyPairs? |
My Custom Application class Parse.Configuration.Builder parseConfigBuilder = new Parse.Configuration.Builder(this); I am using many cloud call and it's okay. |
Check this working project |
@rommansabbir I don't use Back4App! |
@kkbpower You need parse live query service right? I had a problem with liveQuery and i solved it. Try this if this project satisfy your problem |
@mmimeault I saw your links. Is this issue ParseLiveQuery bug? |
Well on my side live query is working for 2 years now without any issue like that. |
What happens if you remove keyPair from your server config? I don't think its required to have keyPairs, where did you see that? Can you post your server config? As always you could also debug your server in the locations @mmimeault pointed out. |
ParseQuery query = ParseQuery.getQuery("Chat");
client = ParseLiveQueryClient.Factory.getClient();
SubscriptionHandling subscriptionHandling = client.subscribe(query);
What is this error?
E/ParseLiveQueryClient: Error handling message
com.parse.LiveQueryException$InvalidResponseException: {"op":"error","error":"Key in request is not valid","code":4,"reconnect":true}
at com.parse.ParseLiveQueryClientImpl.parseMessage(ParseLiveQueryClientImpl.java:268)
at com.parse.ParseLiveQueryClientImpl.access$000(ParseLiveQueryClientImpl.java:24)
at com.parse.ParseLiveQueryClientImpl$1.call(ParseLiveQueryClientImpl.java:201)
at com.parse.ParseLiveQueryClientImpl$1.call(ParseLiveQueryClientImpl.java:199)
at bolts.Task$4.run(Task.java:357)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
at java.lang.Thread.run(Thread.java:776)
Help me plz!
The text was updated successfully, but these errors were encountered: