ParseLiveQuery-Android
ParseLiveQuery-Android copied to clipboard
Parse LiveQuery client for Android.
This log writes when I create or delete a row on db. Parse server : 2.8.3 ParseLifeQuery: android SDK 1.0.6 database: mlab mongodb. p.s.: without LifeQuery everything worked correctly.
Caused by java.lang.NullPointerException: Attempt to invoke interface method 'boolean okhttp3.WebSocket.close(int, java.lang.String)' on a null object reference at com.parse.OkHttp3SocketClientFactory$OkHttp3WebSocketClient.close(OkHttp3SocketClientFactory.java:98) at com.parse.ParseLiveQueryClientImpl.reconnect(ParseLiveQueryClientImpl.java:147) at com.parse.ParseLiveQueryClientImpl.connectIfNeeded(ParseLiveQueryClientImpl.java:113) at com.parse.ParseLiveQueryClientImpl.subscribe(ParseLiveQueryClientImpl.java:95)
1. git clone https://github.com/parse-community/parse-server-example.git 2. compile 'com.parse:parse-livequery-android:1.0.4' for Android Studio
Major error the library. seems Client key is not passed... E/ParseLiveQueryClient: Socket onError java.net.ProtocolException: Expected HTTP 101 response but was '403 Forbidden' at okhttp3.internal.ws.RealWebSocket.checkResponse(RealWebSocket.java:216) at okhttp3.internal.ws.RealWebSocket$2.onResponse(RealWebSocket.java:183) at okhttp3.RealCall$AsyncCall.execute(RealCall.java:141) at okhttp3.internal.NamedRunnable.run(NamedRunnable.java:32)...
Situation: I am working on Latest parse server (2.5.3) which is deployed locally. I can connect and save & retrieve my objects from parse server. Now when I am trying...
Hi, I'm having an issue with the LiveQuery callbacks when losing internet connectivity. Creating the LiveQueryClient, connecting and subscribing all works fine and I get create, update, etc. callbacks. But...
### Issue Description I am using LiveQuery with Android device. The problem is that the events (like `UPDATE`) were delivered twice when they should have been delivered only once. [I...
Could you support auto connect? Many thanks.
How is the websocket getting kept in the background on an android app? As opposed to socket.io it disconnects for some time.
Hey, i have a question to subscribe only specific events [create, update...] with live query client. For example, i only want get ParseObjects which are triggered by the CREATE-Event. If...