I can't get notification according to iOS swift 3

I am following a sampler project provided by firebase. Firebase cloud messaging sammple

My application delegate

import UIKit import Firebase import FirebaseMessaging import UserNotifications import FirebaseInstanceID //add firebase code app delegate code @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? let gcmMessageIDKey = "gcm.message_id" func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. // Register for remote notifications. This shows a permission dialog on first run, to // show the dialog at a more appropriate time move this registration accordingly. // [START register_for_notifications] if #available(iOS 10.0, *) { // For iOS 10 display notification (sent via APNS) UNUserNotificationCenter.current().delegate = self let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound] UNUserNotificationCenter.current().requestAuthorization( options: authOptions, completionHandler: {_, _ in }) } else { let settings: UIUserNotificationSettings = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil) application.registerUserNotificationSettings(settings) } application.registerForRemoteNotifications() // [END register_for_notifications] FirebaseApp.configure() // [START set_messaging_delegate] Messaging.messaging().delegate = self // [END set_messaging_delegate] return true } // [START receive_message] func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) { // 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 // Print message ID. if let messageID = userInfo[gcmMessageIDKey] { print("Message ID: \(messageID)") } // Print full message. print(userInfo) } func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) { // 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 // Print message ID. if let messageID = userInfo[gcmMessageIDKey] { print("Message ID: \(messageID)") } // Print full message. print(userInfo) completionHandler(UIBackgroundFetchResult.newData) } // [END receive_message] func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) { print("Unable to register for remote notifications: \(error.localizedDescription)") } // This function is added here only for debugging purposes, and can be removed if swizzling is enabled. // If swizzling is disabled then this function must be implemented so that the APNs token can be paired to // the InstanceID token. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) { print("APNs token retrieved: \(deviceToken)") // With swizzling disabled you must set the APNs token here. InstanceID.instanceID().setAPNSToken(deviceToken, type: InstanceIDAPNSTokenType.sandbox) } } // [START ios_10_message_handling] @available(iOS 10, *) extension AppDelegate : UNUserNotificationCenterDelegate { // Receive displayed notifications for iOS 10 devices. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { let userInfo = notification.request.content.userInfo // Print message ID. if let messageID = userInfo[gcmMessageIDKey] { print("Message ID: \(messageID)") } // Print full message. print(userInfo) // Change this to your preferred presentation option completionHandler([.alert,.badge,.sound]) } func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) { let userInfo = response.notification.request.content.userInfo // Print message ID. if let messageID = userInfo[gcmMessageIDKey] { print("Message ID: \(messageID)") } // Print full message. print(userInfo) completionHandler() } } // [END ios_10_message_handling] extension AppDelegate : MessagingDelegate { // [START refresh_token] func messaging(_ messaging: Messaging, didRefreshRegistrationToken fcmToken: String) { print("Firebase registration token: \(fcmToken)") print(fcmToken) resgisterNotificationToken(fcmToken: fcmToken) } // [END refresh_token] func application(received remoteMessage: MessagingRemoteMessage) { //get called when sending notification from POSTMAN and when app is open print("%@", remoteMessage.appData) print("%@", remoteMessage) } func resgisterNotificationToken(fcmToken:String){ //let deviceId = UIDevice.current.identifierForVendor!.uuidString //let parameters = ["OTY": AppConstants.init().OS_TYPE,"REGID": fcmToken] as Dictionary<String, String> } } 

I can get a notification sent from the firebase console. I updated my firebase library to the latest version 3.0.

I also get the following warning. InstanceIDAPNSTokenType is deprecated: use the FIRMessaging APNSToken property instead.

kindly provide a solution with the code and give me the structure of the server request so that I can check it from the postman.

Thanks in advance.

+5
source share
2 answers

I just updated the Github sample application to reflect API changes . Sorry about that. I think some of the changes have slipped. The preferred way to set the APN token (if you disabled swizzling):

 Messaging.messaging().apnsToken = deviceToken 

The old setAPNSToken:type: method caused more confusion, because if this type were included and it did not match the build type, the FCM token would not work. If you need to use the old method, I would recommend using the "Unknown" enumeration, which will perform an automatic check.

The question header indicates that you are not receiving a data message, and a new sample change should show this. Method of receiving data messages:

  • Enable the direct channel by setting: Messaging.messaging().shouldEstablishDirectChannel = true

  • Implement the FIRMessagingDelegate and messaging:didReceiveRemoteMessage .

Another sample application you can watch is part of the open source FCM repository here .

+8
source

Can you try setting the apn token as follows:

 FIRInstanceID.instanceID() .setAPNSToken(deviceToken, type: FIRInstanceIDAPNSTokenType.unknown) 

FIRInstanceID setAPNSToken

Set the APNS token for the application. This APNS token will be used to register with Firebase Messaging using a token or tokenWithAuthorizedEntity: scope: options: handler. If the token parameter is set to FIRInstanceIDAPNSTokenTypeUnknown, then InstanceID will read the provisioning profile to find out the type of token.

Firebase API Link

It works for me!

EDIT:

With Firebase version 4.0.0, the way to do this has changed:

 Messaging.messaging() .setAPNSToken(deviceToken, type: MessagingAPNSTokenType.unknown) 

FIRMessaging API Link

+6
source

Source: https://habr.com/ru/post/1268126/


All Articles