Reputation: 2084
I have configured my app to receive push notifications through Parse, which I can send from the Parse dashboard, but I would like to send notifications between devices, specifically when a button is clicked from either device. I cannot find documentation about this...wondering if anyone has experience doing this.
Upvotes: 0
Views: 684
Reputation: 1888
You have to store the current user into Installation class then send push notification using PFInstallation Query and PFPush.
Please refer this parse documentation for more details to send notification. https://parse.com/docs/ios/guide#push-notifications or refer this site Swift Parse : How to Push Notification To a Specific Device/objectId
Upvotes: 1