FCM HTTP v1 API และเครื่องมือแก้ไขการแจ้งเตือนรองรับการส่งลิงก์รูปภาพในเพย์โหลดของการแจ้งเตือนแบบแสดงผลสำหรับการดาวน์โหลดรูปภาพไปยังอุปกรณ์หลังจากการนำส่ง ฟังก์ชันการทำงานนี้รองรับทั้งรูปภาพและวิดีโอสำหรับแอปของ Apple (ดูขีดจำกัดขนาดไฟล์ในเอกสารประกอบของ Apple)
หากต้องการรับและจัดการรูปภาพการแจ้งเตือนในแอป Apple คุณต้องเพิ่มส่วนขยายบริการการแจ้งเตือน ส่วนขยายบริการแจ้งเตือนช่วยให้แอปจัดการรูปภาพที่ส่งในเพย์โหลด FCM ได้ก่อนที่จะแสดงการแจ้งเตือนต่อผู้ใช้ปลายทาง
ตั้งค่าส่วนขยายบริการแจ้งเตือน
หากต้องการเพิ่มส่วนขยายบริการ ให้ทํางานตั้งค่าที่จําเป็นสําหรับการแก้ไขและแสดงการแจ้งเตือนใน APN แล้วเพิ่ม API ตัวช่วยส่วนขยาย FCM ใน NotificationService.m
กล่าวโดยละเอียดคือ ให้ใช้ FIRMessaging extensionHelper
แทน self.contentHandler(self.bestAttemptContent);
ในการดำเนินการดังกล่าว ดังที่แสดง
@interface NotificationService () <NSURLSessionDelegate>
@property(nonatomic) void (^contentHandler)(UNNotificationContent *contentToDeliver);
@property(nonatomic) UNMutableNotificationContent *bestAttemptContent;
@end
@implementation NotificationService
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
self.contentHandler = contentHandler;
self.bestAttemptContent = [request.content mutableCopy];
// Modify the notification content here as you wish
self.bestAttemptContent.title = [NSString stringWithFormat:@"%@ [modified]",
self.bestAttemptContent.title];
// Call FIRMessaging extension helper API.
[[FIRMessaging extensionHelper] populateNotificationContent:self.bestAttemptContent
withContentHandler:contentHandler];
}
...
สร้างคำขอส่ง
ในคำขอส่งการแจ้งเตือน ให้ตั้งค่าตัวเลือก ApnsConfig ต่อไปนี้
fcm_options.image
ที่มี URL รูปภาพheaders({ "mutable-content": 1})
ตัวอย่างคำขอส่งต่อไปนี้จะส่งชื่อการแจ้งเตือนทั่วไปไปยังทุกแพลตฟอร์ม แต่ก็จะส่งรูปภาพด้วย ต่อไปนี้คือภาพโดยประมาณของผลลัพธ์ที่มองเห็นได้ในอุปกรณ์ของผู้ใช้
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
เมื่อตั้งค่า mutable-content
ตามที่แสดงไว้ คำขอส่งนี้จะช่วยให้ส่วนขยายบริการในไคลเอ็นต์ฝั่งที่รับสามารถจัดการรูปภาพที่ส่งในเพย์โหลดได้