使用 sendToTopic 方法时将图像添加到通知
Add image to notification when using sendToTopic method
我想使用sendToTopic方法向主题发送通知,如何在通知中添加图片?
没有notification.imageUrl
等选项
可以这样做-
const message: TopicMessage = {
topic: reqData.topic,
data: {
abc: reqData.abc
},
notification: {
title: reqData.title,
body: reqData.body,
imageUrl: reqData.imageUrl
}
};
// messageRes is a message ID string.
const messageRes = await admin.messaging().send(message);
我想使用sendToTopic方法向主题发送通知,如何在通知中添加图片?
没有notification.imageUrl
可以这样做-
const message: TopicMessage = {
topic: reqData.topic,
data: {
abc: reqData.abc
},
notification: {
title: reqData.title,
body: reqData.body,
imageUrl: reqData.imageUrl
}
};
// messageRes is a message ID string.
const messageRes = await admin.messaging().send(message);