بعد تثبيت تطبيق العميل على جهاز، يمكنه تلقّي الرسائل من خلال واجهة FCM APNs. يمكنك على الفور إرسال إشعارات إلى شرائح المستخدمين باستخدام أداة إنشاء الإشعارات أو الرسائل التي تم إنشاؤها على خادم التطبيقات.
معالجة إشعارات التنبيه
تُرسِل FCM جميع الرسائل التي تستهدف تطبيقات Apple من خلال APN. لمزيد من المعلومات عن تلقّي إشعارات APNs من خلال UNUserNotificationCenter، يُرجى الاطّلاع على مستندات Apple حول معالجة الإشعارات والإجراءات ذات الصلة بالإشعارات.
يجب ضبط UNUserNotificationCenter delegate وتنفيذ طرق المفوّض المناسبة لتلقّي إشعارات العرض من 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
في الحمولة في 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 حول إرسال آخر الأخبار إلى تطبيقك في الخلفية.
تفسير الحمولة في رسالة الإشعار
الحمولة في رسائل الإشعارات هي عبارة عن قاموس للمفاتيح والقيم. تتّبع رسائل الإشعارات المُرسَلة من خلال APNs تنسيق الحمولة في APNs كما هو موضّح أدناه:
{ "aps" : { "alert" : { "body" : "great match!", "title" : "Portugal vs. Denmark", }, "badge" : 1, }, "customKey" : "customValue" }
معالجة الرسائل مع إيقاف تبديل الطريقة
تلقائيًا، إذا عيّنت فئة مثبّت التطبيق لتطبيقك على سمتَي الوكيل
UNUserNotificationCenter
وMessaging
، ستغيّر فئة FCM
فئة مثبّت التطبيق لربط رمز أمان
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(_:)
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); }