6

我编写了使用 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
 }

但它不会在设备上收到通知。

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

4

1 回答 1

1

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

{
"to":"/topics/test",
"notification":{
    "type":"test",
    "title":"test!",
    "message":"test"
     }
}
于 2019-02-26T07:34:06.243 回答