データベースが更新されるたびにトースト通知を受け取るアプリを開発していますが、サーバーがすべてではなく特定のユーザーにのみ通知をプッシュするようにします。
それを行う方法はありますか?
function update(item, user, request) {
request.execute({
success: function () {
// Write to the response and then send the notification in the background
request.respond();
push.mpns.sendToast(item.channel,
{
text1:"Sent from cloud!"
},
{
success: function(pushResponse) {
console.log("Sent push:", pushResponse);
}
});
}
});
}