אחרי שמתקינים את אפליקציית הלקוח במכשיר, היא יכולה לקבל הודעות דרך ממשק ה-APNs של FCM. אתם יכולים להתחיל לשלוח התראות לפלחי משתמשים באופן מיידי באמצעות כלי היצירה של התראות, או הודעות שנוצרו בשרת האפליקציות.
טיפול בהתראות
FCM מעביר את כל ההודעות שמטרגטות אפליקציות של Apple דרך APN. למידע נוסף על קבלת התראות APN דרך UNUserNotificationCenter, אפשר לעיין במסמכי העזרה של Apple בנושא טיפול בהתראות ובפעולות שקשורות להתרעות.
כדי לקבל התראות מוצגות מ-FCM, צריך להגדיר את UNUserNotificationCenter delegate ולהטמיע את שיטות ה-delegate המתאימות.
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
בתוכן הייעודי של APNs. כדי להשתמש בפעולות בהתאמה אישית, צריך לרשום אותן. מידע נוסף זמין במדריך לתכנות התראות מקומיות ומרוחקות של Apple.
כדי לקבל תובנות לגבי העברת ההודעות לאפליקציה, אפשר לעיין ב לוח הבקרה של הדוחות FCM, שבו מתועד מספר ההודעות שנשלחו ונפתחו במכשירי Apple ו-Android, וגם נתונים לגבי 'חשיפות' (התראות שמוצגות למשתמשים) באפליקציות ל-Android.
טיפול בהתראות דחיפה שקטות
כששולחים הודעות באמצעות המפתח 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 בנושא העברת עדכונים ברקע לאפליקציה מוסבר על התנאים שיכולים לגרום לכך שההתראות ברקע לא יוצגו.
פרשנות של עומס העבודה של הודעת ההתראה
המטען הייעודי (Payload) של הודעות ההתראות הוא מילון של מפתחות וערכים. הודעות התראה שנשלחות דרך APNs פועלות לפי הפורמט של המטען הייעודי (payload) של APNs, כפי שמתואר בהמשך:
{ "aps" : { "alert" : { "body" : "great match!", "title" : "Portugal vs. Denmark", }, "badge" : 1, }, "customKey" : "customValue" }
טיפול בהודעות כשהתכונה 'החלפת שיטות (method swizzling)' מושבתת
כברירת מחדל, אם מקצים את הכיתה של נציג האפליקציה של האפליקציה למאפייני הנציג UNUserNotificationCenter
ו-Messaging
, FCM יבצע swizzle לכיתה של נציג האפליקציה כדי לשייך באופן אוטומטי את האסימון FCM לאסימון APNs של המכשיר ולהעביר אירועים של קבלת התראות אל Analytics. אם משביתים במפורש את החלפת השיטות, אם מפתחים אפליקציית SwiftUI או אם משתמשים בכיתה נפרדת לכל אחד מהממנים, צריך לבצע את שתי המשימות האלה באופן ידני.
כדי לשייך את האסימון FCM לאסימון APNs של המכשיר, מעבירים את האסימון של APNs לכיתה 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); }