2016-07-28 146 views
2

好吧,我已經花了昨天的一半,今天上午的一半搜索板和Google以及Firebase Docs的解決方案。只是要清楚。FireBase iOS消息傳遞,無法獲取APNS令牌

我已經FirebaseAppDelegateProxyEnabled設置爲NO,我info.plist中,我會後我的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服務服務器獲取它們。

回答

3

好的,我發現我的問題。 Incase別人遇到這個問題我想發佈解決方案。請務必檢查您的代碼簽名身份和配置文件。我不確定我昨天是如何改變的,但是無論何時我修復這些代碼簽名設置,我的推送通知都很好,我還沒有錯過。

相關問題