繁体   English   中英

FireBase iOS消息传递,无法获取APNS令牌

[英]FireBase iOS Messaging, fails to fetch APNS Token

好的,我花了昨天的一半时间和今天早上的一半时间在董事会和Google以及Firebase Docs上搜索解决方案。 只是要清楚。

我在info.plist中将FirebaseAppDelegateProxyEnabled设置为NO,我将发布我的appDelegate方法,但是我已经浏览了很多文档:

didFinishLaunchingWithOptions:

    customizeAppearance()
    FIRApp.configure()

    tracker.appLaunch()

    registerForPushNotifications(application)
    notificationCenter.addObserver(self, selector: #selector(AppDelegate.tokenRefreshNotification), name: kFIRInstanceIDTokenRefreshNotification, object: nil)

    return PersistentStoreManager.sharedInstance.managedObjectContextHasBeenInitialized()

didReceiveRemoteNotification:

    //Full message
    print("%@", userInfo)


    articleID = "\(userInfo["articleId"]!)"
    notificationCenter.postNotificationName("newArticle", object: nil)

registerForPushNotifications:

    let notificationSettings = UIUserNotificationSettings(
        forTypes: [.Badge, .Sound, .Alert], categories: nil)
    application.registerUserNotificationSettings(notificationSettings)
    application.registerForRemoteNotifications()

didRegisterForRemoteNotificationsWithDeviceToken:

//send the APNs token to firebase
    FIRInstanceID.instanceID().setAPNSToken(deviceToken, type: FIRInstanceIDAPNSTokenType.Sandbox)
    print("In did register For remote Not with token: \(FIRInstanceID.instanceID().token())")
}

tokenRefreshNotification:

    let refreshedToken = FIRInstanceID.instanceID().token()!
    //send token information to server
    self.manager.sendNotificationToken(refreshedToken)

    //double check to connect to FCM, may have failed when attempted before having a token
    connectToFcm()

func application(application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: NSError) {
    print("Failed to register:", error.description)
}

控制台日志:

WARNING: Firebase Analytics App Delegate Proxy is disabled. To log deep link campaigns manually, call the methods in FIRAnalytics+AppDelegate.h.
Configuring the default app.
<FIRAnalytics/INFO> Firebase Analytics v.3201000 started
<FIRAnalytics/INFO> To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled
<FIRInstanceID/WARNING> Failed to fetch APNS token Error Domain=com.firebase.iid Code=1001 "The operation couldn’t be completed. (com.firebase.iid error 1001.)"
<FIRMessaging/INFO> FIRMessaging library version 1.1.0
[4459:501] <FIRAnalytics/INFO> Firebase Analytics enabled
 CFNetwork SSLHandshake failed (-9806)
2016-07-28 10:26:08.245: <FIRInstanceID/WARNING> APNS Environment in profile: development
In did register For remote Not with token: Optional("fWmrxcdNICg:APA91bF_pVwLixBXFuRZEF0w64J7zizSQfpaYNjJhf9g95fZxDmqKD-I1gnaxufkmbNvGZZKs8ifL6ZlXY9nWBc0utgVjEBJG7tUNnA8ciOzeyW9wtfSHyq0IYIf4OepJ4qTJf8qLpIR")
In did register For remote Not with token: Optional("fWmrxcdNICg:APA91bF_pVwLixBXFuRZEF0w64J7zizSQfpaYNjJhf9g95fZxDmqKD-I1gnaxufkmbNvGZZKs8ifL6ZlXY9nWBc0utgVjEBJG7tUNnA8ciOzeyW9wtfSHyq0IYIf4OepJ4qTJf8qLpIR")

我的目标是iOS 8.3及更高版本。 我也将开发和产品推送通知证书都上传到了Firebase中。

我设置了断点,我的tokenRefreshNotification()没有被调用,并且didReceiveRemoteNotification()也没有

我不知道出了什么问题,我想星期一将应用程序发送到应用程序商店。 昨天大部分时间我都收到通知,然后它们停了下来。 我没有从Firebase控制台或我们的Web服务服务器上获得它们。

好的,我发现了我的问题。 如果有人遇到这个问题,我想发布解决方案。 确保检查您的代码签名身份和配置文件。 我不确定昨天是否发生了什么变化,但是,每当我修复这些代码签名设置时,我的推送通知就大功告成了,我还没有错过任何一个。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM