FCM推送通知-图片未推送

问题描述 投票:0回答:1

我有问题,我尝试通过http(https://fcm.googleapis.com/fcm/send)发送FCM通知。当我发送以下有效载荷时:

{
     "notification" : {
         "body" : "test Notification",
         "title": "test Notification",
         "image" : "https://www.fillmurray.com/640/360"
     },


"to":"firebasetoken",
"priority":"high"

}

我在移动设备上收到通知,但通知仅包含标题和正文。我尝试将图像更改为imageurl,这也无法正常工作。

我想显示我的通知如下。

enter image description here

我将非常感谢您的帮助。我在去年年初尝试过,这个有效载荷很好。

android ionic-framework push-notification firebase-cloud-messaging ionic-native
1个回答
0
投票

这是因为您使用的是不支持图像有效负载的旧式HTTP API。尝试迁移到HTTP v1 API,您将能够发送图像有效载荷。请点击以下链接。Migration guideSend image in notification payload

© www.soinside.com 2019 - 2024. All rights reserved.