I have successfully setup parse push notifications and in my installation table I have both an installation, and device token. What I'm really trying to do is send a push notification to certain users, rather than certain devices. How do I bing the installations table to the uses table, so that I can make a query by users and get back a deviceid to push to
相关问题
- How does the setup bootstrapper detect if prerequi
- Plugin with id 'com.google.gms.google-services
- google-drive can't get push notifications
- Installation of Leiningen 2.X in Mac OS X
- Error when installing TDA package on R
相关文章
- Getting errors / failing tests when installing Pyt
- How do you make an installer for your python progr
- How can I add media attachments to my push notific
- Installing the R interpeter and R as a shared libr
- How to open current activity which is open while c
- Does the apple push notification distribution cert
- How posting One Signal notification's addition
- App not showing Notification receiving FCM when th
From https://parse.com/docs/push_guide#top/iOS, section "Using Advanced Targeting".
Now you can create a query on the installation table, where "user" is the user you want to send a push notification to.
Finally, use that query when constructing the push object.
Example in Objective-C (adjust accordingly, if you're sending the push in some other language):