我正在尝试为通过FCM管理员发送的推送通知添加白色图标。根据指南here,我应该只需添加"图标"密钥及其对应的通知URL。但是,它不起作用。当我的手机收到通知时,我会使用默认应用程序图标。知道为什么它不起作用吗?这是我的代码
var message = {
notification: {
title: "title here",
body: "body message here"
},
android: {
notification: {
"sound": "default",
"click_action": "FCM_PLUGIN_ACTIVITY",
"icon": "https://firebasestorage.googleapis.com/xxxxx"
}
},
data: {
tab: "message",
subsection: "notification"
},
token: registrationToken
};
// send the push notification
var sentMessage = admin.messaging().send(message)
.then(function (response) {
console.log("Successfully sent message: ", response);
})
.catch(function (error) {
console.log("Error sending message: ", error);
});