2016-12-15 103 views
8

我知道你以前偶然发现过这个问题;事实上有好几次。但是我遵循每个提供给我的建议here,here,甚至hereFCM + Swift 3 - 没有出现的通知

(写在夫特3上的Xcode 8.1运行)

是的,在我的能力推送通知上。甚至我的背景模式的远程功能是 - 我已经尝试切换的FirebaseAppDelegateProxy开和关,检验证书(为什么,是的,它是指向正确的应用程序包),移动

application.registerForRemoteNotifications() 

哭了,消耗了大量的糖,向上帝祈祷,然后还有什么其他相关的神灵我能想到,而且还没有。

它可能只是第二组眼睛的尖叫需要,但任何想法?

import UIKit 
import UserNotifications 

import Firebase 
import FirebaseMessaging 


@UIApplicationMain 
class AppDelegate: UIResponder, UIApplicationDelegate { 

    var window: UIWindow? 
    let gcmMessageIDKey = "gcm.message_id" 


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 
     FIRApp.configure() 
     // Override point for customization after application launch. 

     // Override point for customization after application launch. 
     // [START register_for_notifications] 
     if #available(iOS 10.0, *) { 
      let authOptions : UNAuthorizationOptions = [.alert, .badge, .sound] 
      UNUserNotificationCenter.current().requestAuthorization(
       options: authOptions, 
       completionHandler: {_,_ in }) 

      // For iOS 10 display notification (sent via APNS) 
      UNUserNotificationCenter.current().delegate = self 
      // For iOS 10 data message (sent via FCM) 
      FIRMessaging.messaging().remoteMessageDelegate = self 

     } else { 
      let settings: UIUserNotificationSettings = 
       UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil) 
      application.registerUserNotificationSettings(settings) 
     } 

     application.registerForRemoteNotifications() 

     // Add observer for InstanceID token refresh callback. 
     NotificationCenter.default.addObserver(self, 
                 selector: #selector(self.tokenRefreshNotification), 
                 name: NSNotification.Name.firInstanceIDTokenRefresh, 
                 object: nil) 

     return true 
    } 

    func tokenRefreshNotification(_ notification: Notification) { 
     if let refreshedToken = FIRInstanceID.instanceID().token() { 
      print("InstanceID token: \(refreshedToken)") 
     } 

     // Connect to FCM since connection may have failed when attempted before having a token. 
     connectToFcm() 
    } 

    // [START connect_to_fcm] 
    func connectToFcm() { 
     FIRMessaging.messaging().connect { (error) in 
      if error != nil { 
       print("Unable to connect with FCM. \(error)") 
      } else { 
       print("Connected to FCM.") 
      } 
     } 
    } 
    // [END connect_to_fcm] 

    func applicationWillResignActive(_ application: UIApplication) { 
     // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 
     // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 
    } 

    func applicationDidEnterBackground(_ application: UIApplication) { 
     // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
     // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 
    } 

    func applicationWillEnterForeground(_ application: UIApplication) { 
     // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 
    } 

    func applicationDidBecomeActive(_ application: UIApplication) { 
     // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 
    } 

    func applicationWillTerminate(_ application: UIApplication) { 
     // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 
    } 


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

    private func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) { 
//  let tokenChars = deviceToken.bytes 
     var tokenString = "" 

     for i in 0..<deviceToken.length { 
      tokenString += String(format: "%02.2hhx", arguments: [[deviceToken.bytes as! CVarArg][i]]) 
     } 

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

     print("tokenString: \(tokenString)") 
    } 
} 

而且这里的扩展...

import Foundation 
import UserNotifications 
import FirebaseMessaging 

@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. 
     print("Message ID: \(userInfo["gcm.message_id"]!)") 

     // Print full message. 
     print("%@", userInfo) 

    } 

} 

extension AppDelegate : FIRMessagingDelegate { 
    // Receive data message on iOS 10 devices. 
    func applicationReceivedRemoteMessage(_ remoteMessage: FIRMessagingRemoteMessage) { 
     print("%@", remoteMessage.appData) 
    } 
} 

令牌登录到控制台,FCM连接,云端通讯抓住了我的证书......唯一可能的暗示我可能是Firebase控制台不会将发送消息的一台设备计为“已发送”。

enter image description here 但控制台看起来不错。

2016-12-15 00:07:05.344 voltuser[4199:2008900] WARNING: Firebase Analytics App Delegate Proxy is disabled. To log deep link campaigns manually, call the methods in FIRAnalytics+AppDelegate.h. 
2016-12-15 00:07:05.349 voltuser[4199:2008900] Firebase automatic screen reporting is enabled. Call +[FIRAnalytics setScreenName:setScreenClass:] to set the screen name or override the default screen class name. To disable automatic screen reporting, set the flag FirebaseAutomaticScreenReportingEnabled to NO in the Info.plist 
2016-12-15 00:07:05.447 voltuser[4199] <Debug> [Firebase/Core][I-COR000001] Configuring the default app. 
2016-12-15 00:07:05.514: <FIRInstanceID/WARNING> Failed to fetch APNS token Error Domain=com.firebase.iid Code=1001 "(null)" 
2016-12-15 00:07:05.520: <FIRMessaging/INFO> FIRMessaging library version 1.2.0 
2016-12-15 00:07:05.549 voltuser[4199:] <FIRAnalytics/INFO> Firebase Analytics v.3600000 started 
2016-12-15 00:07:05.549 voltuser[4199:] <FIRAnalytics/INFO> To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see this) 
2016-12-15 00:07:05.605 voltuser[4199] <Debug> [Firebase/Core][I-COR000018] Already sending logs. 
2016-12-15 00:07:05.679 voltuser[4199] <Debug> [Firebase/Core][I-COR000019] Clearcut post completed. 
2016-12-15 00:07:05.782 voltuser[4199] <Debug> [Firebase/Core][I-COR000019] Clearcut post completed. 
2016-12-15 00:07:05.824 voltuser[4199:] <FIRAnalytics/WARNING> The AdSupport Framework is not currently linked. Some features will not function properly. Learn more at here 
2016-12-15 00:07:07.286 voltuser[4199:] <FIRAnalytics/INFO> Firebase Analytics enabled 
InstanceID token: c_4iSvTQcHw:APA91bGjKnPoH9LysKl9CQxCJRJsfqwXBSUFAmgRp-KEWKjWqe2j4nt6Y5gx8us41rB6eLnRCOwRntnbr_N1fh_swz8j-GvvChSsV3gvG8dufVFLpagdtOxrxPSgLubQrfw-JqkA-4wV 
Connected to FCM. 
And the snapshot says Snap (mx7zr3y6XpSGZ4uB4PhZ8QRHIvt2) <null> 
[AnyHashable("notification"): { 
    body = "THIS IS SO PAINFUL"; 
    e = 1; 
    title = "WHY WONT YOU WORK"; 
}, AnyHashable("from"): 99570566728, AnyHashable("collapse_key"): com.mishastone.voltuser] 

...但消息记录在我的控制台很好。事实上,根本没有出错的错误!

叹息

我的手机是没有得到的前景,背景或任何形式的从应用程序通知 - 没有什么。压缩。小人物。纳达。只是我心碎的声音。

我的iPhone当前位于9.3.5。如果这有助于任何。

任何帮助将不胜感激 - 或替代推送通知系统的建议...

+0

您是从Firebase Console还是从App Server发送通知?如果从App Server中,您可以添加示例负载吗? –

+0

从Firebase控制台。 –

+0

有没有这个运气?我目前也在同一条船上 – CharlieNorris

回答

10

想通了。 p.s.即时通讯使用的斯威夫特3语法,你缺少你willPresent方法

completionHandler 与通知的演示选项来执行该块completionhandler。在执行此方法期间,始终在某个时刻执行此块。

https://developer.apple.com/reference/usernotifications/unusernotificationcenterdelegate/1649518-usernotificationcenter

func userNotificationCenter(_ center: UNUserNotificationCenter, 
          willPresent notification: UNNotification, 
          withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { 
    let userInfo = notification.request.content.userInfo as! [String: Any] 



    completionHandler([.alert, .badge, .sound]) 

} 
+0

啊,所以就是这样。我最终通过一遍又一遍地复制和粘贴示例代码来修复我的错误。感谢您指出它的具体细节! –

+0

这是正确的吗? OP说:“我的iPhone目前在9.3.5上”,但是这个功能(和你链接的文档)说它是SDK 10.0+ – tospig

+0

你是救星bro!哇,真的非常感谢 – ken

0

如果你确信你的代码是完美的,但你仍是无法接收FCM通知,请更新从火力地堡控制台P12证书。您必须仅从Push证书导出安全密钥并将其上载。您将开始接收通知。