简体   繁体   English

通过Firebase的iOS推送通知不起作用

[英]iOS push notification via Firebase not working

Hello I'm making an iPhone app where I send push notifications via Google's Firebase. 您好,我正在制作一个iPhone应用程序,在其中我通过Google的Firebase发送推送通知。 I'm using Swift and Xcode for the programming. 我正在使用Swift和Xcode进行编程。 When I open the app I get asked to allow push notifications, however I don't receive any when I send them from the Firebase Console. 当我打开应用程序时,系统会要求我允许推送通知,但是从Firebase控制台发送推送通知时却没有收到任何通知。 I was wondering if you could help me out. 我想知道您是否可以帮助我。 I'm using Ad Hoc export to transfer an .isa to my friend's iPhone and test it that way. 我正在使用Ad Hoc导出将.isa转移到我朋友的iPhone上,并以此方式进行测试。 I followed exactly the Firebase tutorial - adding the .plist, the cocoa pod and I uploaded a certificate in the project settings. 我完全按照Firebase教程进行操作-添加.plist,可可豆荚,并在项目设置中上传了证书。 I have a paid apple developer account. 我有一个付费的Apple开发人员帐户。

import UIKit
import CoreData
import Firebase
import FirebaseMessaging


@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?


func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    FIRApp.configure()

    let notificationTypes: UIUserNotificationType = [UIUserNotificationType.Alert,UIUserNotificationType.Badge,UIUserNotificationType.Sound]

    let notificationSettings = UIUserNotificationSettings(forTypes:notificationTypes, categories:nil)

    application.registerForRemoteNotifications()
    application.registerUserNotificationSettings(notificationSettings)
    return true
}


func applicationWillResignActive(application: UIApplication) {
}

func applicationDidEnterBackground(application: UIApplication) {
}

func applicationWillEnterForeground(application: UIApplication) {
}

func applicationDidBecomeActive(application: UIApplication) {
}

func applicationWillTerminate(application: UIApplication) {
}

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject],
                 fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
    print("MessageID : \(userInfo["gcm_message_id"]!)")
    print("%@", userInfo)

   }
}

There are a few more things you need to do. 您还需要做几件事。 When you registerForRemoteNotifications , you receive an APNS Token which you need to give to Firebase. 当您registerForRemoteNotifications ForRemoteNotifications时,您会收到需要提供给Firebase的APNS令牌。 This is done in application didRegisterForRemoteNotificationsWithDeviceToken . 这是在application didRegisterForRemoteNotificationsWithDeviceToken完成的。

import UIKit
import CoreData
import Firebase
import FirebaseMessaging

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    override init() {

        super.init()

        FIRApp.configure()
    }

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

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

        NSNotificationCenter.defaultCenter().addObserver(self,
            selector: #selector(tokenRefreshNotification),
            name: kFIRInstanceIDTokenRefreshNotification,
            object: nil
        )

        return true
    }

    func applicationDidEnterBackground(application: UIApplication) {

        FIRMessaging.messaging().disconnect()
    }

    func applicationDidBecomeActive(application: UIApplication) {

        FIRMessaging.messaging().connectWithCompletion { (error) in

            switch error {
            case .Some:
                print("Unable to connect with FCM. \(error)")
            case .None:
                print("Connected to FCM.")
            }
        }
    }

    func applicationWillResignActive(application: UIApplication) {}

    func applicationWillEnterForeground(application: UIApplication) {}

    func applicationWillTerminate(application: UIApplication) {}

    func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {

        FIRInstanceID.instanceID().setAPNSToken(deviceToken, type: .Sandbox)
    }

    func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject],
                     fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {

        print("MessageID : \(userInfo["gcm.message_id"]!)")
        print("%@", userInfo)
    }

    func tokenRefreshNotification(notification: NSNotification) {

        if let refreshedToken = FIRInstanceID.instanceID().token() {
            print("Instance ID token: \(refreshedToken)")
        }

        applicationDidBecomeActive(UIApplication.sharedApplication())
    }
}

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

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