无法在iOS 9.2上接收FCM主题消息传递



我编写了使用FCM主题按摩以接收服务器的推送通知的应用程序。

我的http请求是:

https://fcm.googleapis.com/fcm/send
Content-Type:application/json
Authorization:key=AIzaSyZ-1u...0GBYzPu7Udno5aA
{
"to":"/topics/Foo-bar",
"priority":"high",
"content_available": true,
"data":{
    "notification-type":"chat",
    "target":"Current User",
    "title":"Current User has sent you a message",
    "text": "hello1",
    "badge": 5  //Badge you want to show on app icon
   }
}

我得到了回应,为:

{
"message_id": 6199072048907273657
 }

,但它没有在设备上收到通知。

以及如何在调试器中打印通知数据??

有效载荷应该是这样。而不是数据使用通知对象。

{
"to":"/topics/test",
"notification":{
    "type":"test",
    "title":"test!",
    "message":"test"
     }
}

相关内容

  • 没有找到相关文章

最新更新