将图像添加到Firebase云消息传递通知

时间:2020-09-22 04:25:25

标签: firebase flutter push-notification firebase-cloud-messaging

我正在尝试通过以下方式将图像添加到fcm修饰有效载荷中

const payload= {
                    notification: {
                    title: name,
                    body: msg.textContent,
                    image:url,
                    click_action: 'FLUTTER_NOTIFICATION_CLICK' // required only for onResume or onLaunch callbacks
                     },
                   data:{
                          screen:'chat',
                          chatid:chatid,
                          senderid:senderId
                                   }
                                 };

图像会以展开视图的形式添加,例如enter image description here

如何在仅在未展开的通知视图(如enter image description here)中显示的有效载荷中添加图像

0 个答案:

没有答案
相关问题