Questions tagged [parse-live-query]
14 questions
2
votes
0 answers
How to setup Parse live query with Android (Java) with self-hosted server URL
I'm trying to use Parse live queries in Android Studio following this back4app guide. I enabled live query and set up the LiveQuery client following Steps 1 and 2 in the guide. However, I am having trouble with Step 3 (subscribing to the query).…

Kat Chen
- 21
- 2
2
votes
1 answer
livequeries wont update my values using paresplattform
Im building an SPA with parse.js and Vue.js and are using queries like these to pull things from my database.
let query = new parse.Query("MyData");
const results = await query.find();
This works fine but my data wont update automatically when…

acroscene
- 845
- 4
- 16
- 45
1
vote
0 answers
Parse server live querying not working for Android App
I am using the Parse Server(Back4app) I have read all the docs given by Parse and back4App but I can't seem to find why the live query is not working.
The Code:
ParseObject Pins = new ParseObject("Map_Pins");
Pins.put("latitude",…

mr_dark
- 21
- 1
1
vote
2 answers
LiveQuery does not work, if there is no ParseConnectivityProvider provided
Racking my brains over this.
I cannot get past this issue, my code is producing this error:
LiveQuery does not work, if there is no ParseConnectivityProvider provided.
I tried playing around with the liveQueryURL and no luck. The flutter docs have…

RobbB
- 1,214
- 11
- 39
0
votes
0 answers
ParseLiveQuery-iOS-OSX received data but unable to trigger event handler in SwiftUI
I'm using ParseLiveQuery-iOS-OSX library to receive live server updates from my Parse Server in a SwiftUI project. I've followed closely to various sources online. Below is my current viewmodel:
class InitializationViewModel: ObservableObject{
…

Jack LIU
- 71
- 1
- 2
0
votes
1 answer
Parse Live Queries on iOS
Are live queries for the Parse SDK not available for iOS? There is a guide for it under the android menu on back4app but nothing for iOS. All of the information currently on guides only refers to JavaScript and nothing seems to be listed for obj-c…

user717452
- 33
- 14
- 73
- 149
0
votes
0 answers
Understanding the use of subscriptions in the Parse JS SDK - How to send back Updated data
I believe I am misunderstanding how the Parse JS SDK when it comes to handling subscriptions via Parse LiveQuery. In my Cloud Code folder (hosted on a server), I am able to invoke the following function from my front end client:
getMatch: async…

Joe Iacono
- 43
- 1
- 7
0
votes
0 answers
Parse Livequeries don't handle events suddenly since yersterday
I'm using Parse platform with livequeries.
It's deployed since 2 years and everything works fine until yesterday.
Everything is ok on server side but on client side (IOS app with ParseLiveQuery-iOS-OSX) I can see the events in Xcode console but it's…

JoSaba
- 1
- 1
0
votes
0 answers
ParseLiveQuery doesn't catch any event for IOS
I implemented the documentation exactly, but the events are not handle.
My code is :
let serverUrl = "xxxxxxxxxxxx"
let appId = "xxxxxxxxxxxx"
let clientKey = "xxxxxxxxxxxxxxx"
let client = ParseLiveQuery.Client(server: serverUrl,…
0
votes
2 answers
Parse Server Live Query Wss Connection On Apache 403 Error
I've been beating my head against the wall over getting the parse server live queries working for a week now and no matter what I do I just can't get apache to let the wss:// connection go through.
I'm using a bitnami ami that sets up the parse…

Spencer Fraise
- 138
- 2
- 11
0
votes
1 answer
Problem with configuration of LiveQuery in Parseplatform
Hello i have installed Parse server and parse sdk for php on my Linux Centos Server.
Parse Dashboard: 1.3.3,
Server version: 4.3.0
I'm managing those db's using php code. This parser was installed by someone else. The thing is I'm not sure how to…

Adrian Zalewski
- 33
- 7
0
votes
1 answer
IOS Parse LiveQuery: Error processing message: Optional(POSIXErrorCode: Software caused connection abort)
I've developed an app in SwiftUI where I also use a chat with Parse LiveQuery.
The chat is working perfectly in real time until the app goes in background or the phone screen is closed.
If I receive a notification for a new message and I open the…

Silviu
- 145
- 2
- 10
0
votes
1 answer
Terminal showing ReSubScription:{} when using LiveQuery in parse_server_sdk_flutter
I followed all steps in documentation, but this function never gets called:
subscription.on(LiveQueryEvent.create,
(value) {});
All I receive in terminal is this: "ReSubScription:{}".
I am trying to capture the event when one of my classes…

spkakkar
- 113
- 4
0
votes
0 answers
Modify object before client receiving it on LiveQuery
I am trying to hide some fields in my cloud code for a class with blocking value to a default number in afterFind trigger.
Parse.Cloud.afterFind("Question", async (req) => {
let objs = req.objects;
if (req.master) return req.objects;
…

Suat Karabacak
- 643
- 2
- 7
- 24