As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I am unable to send push notification ... i have only one user in user collection .. i managed My users creating my custom user collection named "LoginMaster". please open the above link i posted and study all the code and answer me.
hi damien,
plz answer me this question..
https://support.kinvey.com/support/discussions/topics/5000051310
No worries, please let me know if you need anything else.
Thanx Damien Bell
Sukhpal,
You could do something like the code below
function onPostSave(request, response, modules) { var push = modules.push; var collectionAccess = modules.collectionAccess; collectionAccess.collection('user').find({'username': 'bc18fbae-708b-416e-a47e-ae96f7d1ecfe'}, function (err, user) { push.sendMessage(user, 'hello3a'); response.continue(); }); }
There may be a stray ) or } in there, but that is roughly right.
Thanks.
Sukhpal Singh
Hi,
I am working on a android application and i want to send push notification to some selected users from database using Business logic on postSave.
I do not want to send push notifications to all the users.
How can i implement this??
1 person has this question