जब आपका क्लाइंट ऐप्लिकेशन किसी डिवाइस पर इंस्टॉल हो जाता है, तो उसे FCM APNs इंटरफ़ेस की मदद से मैसेज मिल सकते हैं. सूचनाएं बनाने वाले टूल या अपने ऐप्लिकेशन सर्वर पर बनाए गए मैसेज की मदद से, उपयोगकर्ता सेगमेंट को तुरंत सूचनाएं भेजना शुरू किया जा सकता है.
सूचनाएं मैनेज करना
FCM, APNs के ज़रिए Apple ऐप्लिकेशन को टारगेट करने वाले सभी मैसेज डिलीवर करता है. UNUserNotificationCenter के ज़रिए APNs सूचनाएं पाने के बारे में ज़्यादा जानने के लिए, सूचनाएं और सूचना से जुड़ी कार्रवाइयों को मैनेज करना सेक्शन में Apple का दस्तावेज़ देखें.
FCM से डिसप्ले सूचनाएं पाने के लिए, आपको UNUserNotificationCenter 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
पैरामीटर सेट करें.
उस वैल्यू का इस्तेमाल करें जिसका इस्तेमाल, APNs पेलोड में category
पासकोड के लिए किया जाएगा. कस्टम कार्रवाइयों का इस्तेमाल करने से पहले,
उन्हें रजिस्टर करना ज़रूरी है. ज़्यादा जानकारी के लिए, Apple की लोकल और रिमोट सूचना प्रोग्रामिंग गाइड देखें.
अपने ऐप्लिकेशन पर मैसेज डिलीवरी की अहम जानकारी पाने के लिए, FCM रिपोर्टिंग डैशबोर्ड देखें. इसमें, Apple और Android डिवाइसों पर भेजे गए और खोले गए मैसेज की संख्या के साथ-साथ, Android ऐप्लिकेशन के लिए "इंप्रेशन" (उपयोगकर्ताओं को मिली सूचनाएं) का डेटा भी रिकॉर्ड किया जाता है.
साइलेंट पुश नोटिफ़िकेशन मैनेज करना
content-available
पासकोड (यह एपीएन के 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 के दस्तावेज़ देखें.
सूचना वाले मैसेज पेलोड को समझना
सूचना मैसेज का पेलोड, की और वैल्यू की डिक्शनरी होती है. APNs के ज़रिए भेजे जाने वाले सूचना मैसेज, APNs के पेलोड फ़ॉर्मैट के मुताबिक होते हैं. इस फ़ॉर्मैट के बारे में यहां बताया गया है:
{ "aps" : { "alert" : { "body" : "great match!", "title" : "Portugal vs. Denmark", }, "badge" : 1, }, "customKey" : "customValue" }
मैथड स्विज़लिंग की सुविधा बंद होने पर मैसेज मैनेज करना
डिफ़ॉल्ट रूप से, अगर आपने अपने ऐप्लिकेशन की ऐप्लिकेशन डेलीगेट क्लास को UNUserNotificationCenter
और Messaging
डेलीगेट प्रॉपर्टी को असाइन किया है, तो FCM आपकी ऐप्लिकेशन डेलीगेट क्लास को स्विज़ल कर देगा, ताकि आपके FCM टोकन को डिवाइस के APNs टोकन से अपने-आप जोड़ा जा सके और सूचना मिलने के इवेंट को Analytics को पास किया जा सके. अगर आपने मेथड स्विज़लिंग की सुविधा को साफ़ तौर पर बंद किया है, SwiftUI ऐप्लिकेशन बना रहे हैं या किसी भी डेलिगेट के लिए अलग क्लास का इस्तेमाल किया है, तो आपको इन दोनों टास्क को मैन्युअल तरीके से पूरा करना होगा.
FCM टोकन को डिवाइस के एपीएन टोकन से जोड़ने के लिए, apnsToken
प्रॉपर्टी के ज़रिए, अपने ऐप्लिकेशन डेलीगेट के टोकन रीफ़्रेश हैंडलर में एपीएन टोकन को Messaging
क्लास में पास करें.
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); }