קבלת הודעות באפליקציה של Apple

לאחר שאפליקציית הלקוח מותקנת במכשיר, היא יכולה לקבל הודעות באמצעות ממשק ה-APN של FCM. אפשר להתחיל מיד שליחת התראות לפלחי משתמשים כתיבת התראות או הודעות שמבוססות על שרת האפליקציות.

טיפול בהתראות

FCM מעבירה את כל ההודעות שמטרגטות אפליקציות של Apple באמצעות נקודות APN. מידע נוסף מידע על קבלת התראות APN דרך UNUserNotificationCenter, זמין לעיון התיעוד מופעל טיפול בהתראות ובפעולות שקשורות להתראות.

צריך להגדיר את מקבל הגישה ל-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 ב- מטען ייעודי (payload) של התראה. צריך להשתמש בערך שישמש אותך מפתח category במטען הייעודי (payload) של ה-APN. חובה לרשום את הפעולות המותאמות אישית לפני שאפשר להשתמש בהם. מידע נוסף זמין במדריך לתכנות התראות מקומיות ומרוחקות של Apple.

לקבלת תובנות לגבי מסירת ההודעות לאפליקציה שלך: ה FCM במרכז הבקרה לדיווח, שבו נרשם מספר ההודעות שנשלחו ונפתחו במכשירי Apple ו-Android, יחד עם נתונים לגבי 'חשיפות' (התראות שמשתמשים רואים) באפליקציות ל-Android.

טיפול בהתראות שקטות

כששולחים הודעות עם המפתח content-available (מקביל למפתח APN) content-available, ההודעות יישלחו כהתראות שקטות. להוציא את האפליקציה ממצב שינה ברקע כדי לבצע משימות כמו רענון של נתוני רקע. בניגוד להתראות בחזית, צריך לטפל בהתראות האלה באמצעות השיטה 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) של הודעות התראה הוא מילון של של המפתחות והערכים. הודעות התראות שנשלחות דרך נקודות APN עוקבות אחרי נקודות ה-APN פורמט מטען ייעודי (payload) כפי שמתואר בהמשך:

  {
    "aps" : {
      "alert" : {
        "body" : "great match!",
        "title" : "Portugal vs. Denmark",
      },
      "badge" : 1,
    },
    "customKey" : "customValue"
  }

טיפול בהודעות כאשר שינוי התצוגה מושבת

כברירת מחדל, אם מקצים את הכיתה של נציג האפליקציה של האפליקציה למאפייני הנציג UNUserNotificationCenter ו-Messaging, FCM יבצע swizzle לכיתה של נציג האפליקציה כדי לשייך באופן אוטומטי את האסימון FCM לאסימון APNs של המכשיר ולהעביר אירועים של קבלת התראות אל Analytics. אם משביתים במפורש את החלפת השיטות, אם מפתחים אפליקציית SwiftUI או אם משתמשים בכיתה נפרדת לכל אחד מהממנים, צריך לבצע את שתי המשימות האלה באופן ידני.

כדי לשייך את האסימון FCM לאסימון ה-APN של המכשיר, צריך להעביר את נקודות ה-APN אסימון למחלקה Messaging בחשבון של מקבל הגישה לאפליקציה handler של רענון אסימונים דרך נכס 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(_:) method.

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);
}