首页 > 解决方案 > FCM 不发送 webpush 通知

问题描述

我正在使用 FCM 发送通知,它与通知和数据完美配合,但是当我尝试发送 webpush 对象时,它会忽略它。

这是我正在使用的请求示例。

{
  "message":{
     "token":"bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
     "notification":{
       "title":"Match update",
       "body":"Arsenal goal in added time, score is now 3-0"
     },
     "data": {
       "key1": "value"
     }
     "webpush":{
       "notification":{
         "click_action":"something"
       }
     }
   }
 }

标签: javascriptphpfirebasefirebase-cloud-messaging

解决方案


推荐阅读