gpt4 book ai didi

javascript - 推送通知 channel Azure JS 后端

转载 作者:行者123 更新时间:2023-12-03 08:31:01 26 4
gpt4 key购买 nike

我现在正在开发 Xamarin.Forms 应用程序,但在配置推送通知时遇到一些问题。我已关注 https://azure.microsoft.com/en-us/documentation/articles/partner-xamarin-mobile-services-xamarin-forms-get-started-push/ 上的文档,但这只是教您如何使用推送通知响应请求。

如何在 Xamarin.Forms 中创建推送通知并将其发送给用户?如何设置不同的推送 channel ,以便一次性通知特定的用户组?

事实上,这是我用于响应推送通知的 Javascript 后端代码:

  function insert(item, user, request) {
// Execute the request and send notifications.
request.execute({
success: function() {
// Create a template-based payload.
var payload = '{ "message" : "New item added: ' + item.text + '" }';

// Write the default response and send a notification
// to all platforms.
push.send(null, payload, {
success: function(pushResponse){
console.log("Sent push:", pushResponse);
// Send the default response.
request.respond();
},
error: function (pushResponse) {
console.log("Error Sending push:", pushResponse);
// Send the an error response.
request.respond(500, { error: pushResponse });
}
});
}
});
}

最佳答案

推送通知很棘手,因为即使在表单上,​​它们也需要针对每个平台进行不同的处理。本文通过 .net 后端介绍了整个过程,但它应该可以回答您的问题。

http://www.xamarinhelp.com/push-notifications/

您可以通过让不同类型的用户注册到不同的标签,然后仅发送到这些标签来向他们发送信息。标签就是您所说的组。

关于javascript - 推送通知 channel Azure JS 后端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33330691/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com