我有问题,我尝试通过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,这也无法正常工作。
我想显示我的通知如下。
我将非常感谢您的帮助。我在去年年初尝试过,这个有效载荷很好。
这是因为您使用的是不支持图像有效负载的旧式HTTP API。尝试迁移到HTTP v1 API,您将能够发送图像有效载荷。请点击以下链接。Migration guide。Send image in notification payload