FCM HTTP v1 API 和通知編寫工具支援在顯示通知的酬載中傳送圖片連結,以便在傳送後將圖片下載到裝置。通知圖片的大小上限為 1 MB,且會受到原生 Android 圖片支援的限制。
建立傳送要求
在通知傳送要求中,設定下列 AndroidConfig 選項:
notification.image
包含圖片網址
以下範例傳送要求會將常見的通知標題傳送至所有平台,但也會傳送圖片。以下是使用者裝置上大致的視覺效果:
Node.js
const topicName = 'industry-tech';
const message = {
notification: {
title: 'Sparky says hello!'
},
android: {
notification: {
imageUrl: 'https://foo.bar.pizza-monster.png'
}
},
apns: {
payload: {
aps: {
'mutable-content': 1
}
},
fcm_options: {
image: 'https://foo.bar.pizza-monster.png'
}
},
webpush: {
headers: {
image: 'https://foo.bar.pizza-monster.png'
}
},
topic: topicName,
};
getMessaging().send(message)
.then((response) => {
// Response is a message ID string.
console.log('Successfully sent message:', response);
})
.catch((error) => {
console.log('Error sending message:', error);
});
REST
POST https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send HTTP/1.1
Content-Type: application/json
Authorization: Bearer ya29.ElqKBGN2Ri_Uz...HnS_uNreA
{
"message":{
"topic":"industry-tech",
"notification":{
"title":"Sparky says hello!",
},
"android":{
"notification":{
"image":"https://foo.bar/pizza-monster.png"
}
},
"apns":{
"payload":{
"aps":{
"mutable-content":1
}
},
"fcm_options": {
"image":"https://foo.bar/pizza-monster.png"
}
},
"webpush":{
"headers":{
"image":"https://foo.bar/pizza-monster.png"
}
}
}
}
如要進一步瞭解訊息主體中特定平台區塊可用的鍵,請參閱 HTTP v1 參考說明文件。
設定 notification
後,這個傳送要求可讓接收用戶端處理在酬載中傳送的圖片。