0
我正在開發一個應用程序,以便在數據庫更新時接收Toast通知, 但我希望服務器只將通知推送給一個特定用戶而不是全部。如何從Azure移動服務推送Toast通知
這樣做的任何方式?
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);
}
});
}
});
}