เมื่อติดตั้งแอปไคลเอ็นต์ในอุปกรณ์แล้ว แอปจะรับข้อความผ่านอินเทอร์เฟซ FCM APN ได้ คุณเริ่มส่งการแจ้งเตือนไปยังกลุ่มผู้ใช้ได้ทันทีด้วย เครื่องมือเขียนข้อความแจ้งเตือนหรือข้อความที่สร้างในเซิร์ฟเวอร์แอปพลิเคชัน
จัดการการแจ้งเตือน
FCM ส่งข้อความทั้งหมดที่กำหนดเป้าหมายไปยังแอป Apple ผ่าน APN ดูข้อมูลเพิ่มเติมเกี่ยวกับการรับการแจ้งเตือน APN ผ่าน UNUserNotificationCenter ได้ที่เอกสารประกอบของ Apple เกี่ยวกับการจัดการการแจ้งเตือนและการดําเนินการที่เกี่ยวข้องกับการแจ้งเตือน
คุณต้องตั้งค่าผู้รับมอบสิทธิ์ UNUserNotificationCenter และใช้เมธอดผู้รับมอบสิทธิ์ที่เหมาะสมเพื่อรับการแจ้งเตือนที่แสดงจาก FCM
Swift
extension AppDelegate: UNUserNotificationCenterDelegate { // Receive displayed notifications for iOS 10 devices. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification) async -> UNNotificationPresentationOptions { let userInfo = notification.request.content.userInfo // With swizzling disabled you must let Messaging know about the message, for Analytics // Messaging.messaging().appDidReceiveMessage(userInfo) // ... // Print full message. print(userInfo) // Change this to your preferred presentation option return [[.alert, .sound]] } func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse) async { let userInfo = response.notification.request.content.userInfo // ... // With swizzling disabled you must let Messaging know about the message, for Analytics // Messaging.messaging().appDidReceiveMessage(userInfo) // Print full message. print(userInfo) } }
Objective-C
// Receive displayed notifications for iOS 10 devices. // Handle incoming notification messages while app is in the foreground. - (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler { NSDictionary *userInfo = notification.request.content.userInfo; // With swizzling disabled you must let Messaging know about the message, for Analytics // [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // ... // Print full message. NSLog(@"%@", userInfo); // Change this to your preferred presentation option completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionAlert); } // Handle notification messages after display notification is tapped by the user. - (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler { NSDictionary *userInfo = response.notification.request.content.userInfo; if (userInfo[kGCMMessageIDKey]) { NSLog(@"Message ID: %@", userInfo[kGCMMessageIDKey]); } // With swizzling disabled you must let Messaging know about the message, for Analytics // [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // Print full message. NSLog(@"%@", userInfo); completionHandler(); }
หากต้องการเพิ่มการดําเนินการที่กําหนดเองในการแจ้งเตือน ให้ตั้งค่าพารามิเตอร์ click_action
ในเพย์โหลดการแจ้งเตือน
ใช้ค่าที่คุณจะใช้สำหรับคีย์ category
ในเพย์โหลด APN คุณต้องลงทะเบียนการดําเนินการที่กำหนดเองก่อนจึงจะใช้ได้ ดูข้อมูลเพิ่มเติมได้ที่คู่มือการเขียนโปรแกรมการแจ้งเตือนในเครื่องและจากระยะไกลของ Apple
ดูข้อมูลเชิงลึกเกี่ยวกับการนำส่งข้อความไปยังแอปของคุณได้ที่หน้าแดชบอร์ดการรายงาน FCM ซึ่งบันทึกจำนวนข้อความที่ส่งและเปิดในอุปกรณ์ Apple และ Android รวมถึงข้อมูล "การแสดงผล" (การแจ้งเตือนที่ผู้ใช้เห็น) สําหรับแอป Android
จัดการข้อความ Push แบบไม่มีเสียง
เมื่อส่งข้อความด้วยคีย์ content-available
(เทียบเท่ากับ content-available
ของ APN) ระบบจะส่งข้อความเป็นการแจ้งเตือนแบบไม่มีเสียง ซึ่งจะปลุกแอปในเบื้องหลังให้ทำงานต่างๆ เช่น การรีเฟรชข้อมูลในเบื้องหลัง
การแจ้งเตือนเหล่านี้ต้องจัดการผ่านเมธอด application(_:didReceiveRemoteNotification:fetchCompletionHandler:)
ซึ่งแตกต่างจากการแจ้งเตือนในเบื้องหน้า
ติดตั้งใช้งาน application(_:didReceiveRemoteNotification:fetchCompletionHandler:)
ตามที่แสดง
Swift
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) async -> UIBackgroundFetchResult { // If you are receiving a notification message while your app is in the background, // this callback will not be fired till the user taps on the notification launching the application. // TODO: Handle data of notification // With swizzling disabled you must let Messaging know about the message, for Analytics // Messaging.messaging().appDidReceiveMessage(userInfo) // Print message ID. if let messageID = userInfo[gcmMessageIDKey] { print("Message ID: \(messageID)") } // Print full message. print(userInfo) return UIBackgroundFetchResult.newData }
Objective-C
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { // If you are receiving a notification message while your app is in the background, // this callback will not be fired till the user taps on the notification launching the application. // TODO: Handle data of notification // With swizzling disabled you must let Messaging know about the message, for Analytics // [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // ... // Print full message. NSLog(@"%@", userInfo); completionHandler(UIBackgroundFetchResultNewData); }
แพลตฟอร์มของ Apple ไม่ได้รับประกันการส่งการแจ้งเตือนในเบื้องหลัง หากต้องการดูข้อมูลเกี่ยวกับเงื่อนไขที่อาจทำให้การแจ้งเตือนในเบื้องหลังล้มเหลว โปรดดูเอกสารของ Apple เกี่ยวกับการพุชการอัปเดตพื้นหลังไปยังแอปของคุณ
การตีความเพย์โหลดข้อความแจ้งเตือน
เพย์โหลดของข้อความแจ้งเตือนคือพจนานุกรมของคีย์และค่า ข้อความแจ้งเตือนที่ส่งผ่าน APNs จะใช้รูปแบบเพย์โหลด APNs ดังต่อไปนี้
{ "aps" : { "alert" : { "body" : "great match!", "title" : "Portugal vs. Denmark", }, "badge" : 1, }, "customKey" : "customValue" }
จัดการข้อความที่ปิดใช้การสลับที่เมธอด
โดยค่าเริ่มต้น หากคุณกำหนดคลาสตัวแทนแอปของแอปให้กับพร็อพเพอร์ตี้ตัวแทน UNUserNotificationCenter
และ Messaging
FCM จะเปลี่ยนคลาสตัวแทนแอปเพื่อเชื่อมโยงโทเค็น FCM กับโทเค็น APN ของอุปกรณ์โดยอัตโนมัติ และส่งเหตุการณ์การได้รับการแจ้งเตือนไปยัง Analytics หากคุณปิดใช้การผสมวิธีการอย่างชัดเจน หากคุณกำลังสร้างแอป SwiftUI หรือหากคุณใช้คลาสแยกต่างหากสำหรับตัวแทนดังกล่าว คุณจะต้องทําทั้ง 2 งานนี้ด้วยตนเอง
หากต้องการเชื่อมโยงโทเค็น FCM กับโทเค็น APN ของอุปกรณ์ ให้ส่งโทเค็น APN ไปยังคลาส Messaging
ในตัวแฮนเดิลการรีเฟรชโทเค็นของตัวแทนแอปผ่านพร็อพเพอร์ตี้ apnsToken
Swift
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) { Messaging.messaging().apnsToken = deviceToken; }
Objective-C
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { [FIRMessaging messaging].APNSToken = deviceToken; }
หากต้องการส่งข้อมูลการได้รับหนังสือแจ้งให้ Analytics ให้ใช้เมธอด appDidReceiveMessage(_:)
Swift
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { let userInfo = notification.request.content.userInfo Messaging.messaging().appDidReceiveMessage(userInfo) // Change this to your preferred presentation option completionHandler([[.alert, .sound]]) } func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) { let userInfo = response.notification.request.content.userInfo Messaging.messaging().appDidReceiveMessage(userInfo) completionHandler() } func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) { Messaging.messaging().appDidReceiveMessage(userInfo) completionHandler(.noData) }
Objective-C
- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler { NSDictionary *userInfo = notification.request.content.userInfo; [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // Change this to your preferred presentation option completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionAlert); } - (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler { NSDictionary *userInfo = response.notification.request.content.userInfo; [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; completionHandler(); } - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler { [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; completionHandler(UIBackgroundFetchResultNoData); }