Bagusflyer
Bagusflyer

Reputation: 12925

Is it possible to push data to my mobile application through Parse.com object?

I'm trying to use parse.com in one of my project. But I'd like to know if it's possible to get notification in my mobile application (iOS, android) when there is a change in an object, for example, a new raw is added, or a raw is modified?

The query is used to get the object currently. But this is not very efficient in my case. I have to query the result every 30s and disable the cache for the query. But the object is seldom changed in one hand. And I don't want the end user to wait for too long to be notified when there is a change if I set the interval to bigger value on the other hand.

Any suggestion? Thanks

Upvotes: 0

Views: 153

Answers (1)

Chatura Dilan
Chatura Dilan

Reputation: 1572

You can send a push from the method you use to add or edit the data to parse.com for more info https://parse.com/docs/push_guide#sending/REST

Upvotes: 1

Related Questions