簡體   English   中英

被殺死的應用程序如何收到Firebase消息

[英]how do killed app receive firebase message

在后台和前台接收通知。 但是如果應用程序被終止,我將無法收到通知。

從后台通過Firebase json文件安裝在證書上的功能打開后台獲取和遠程通知到“ content-available” = true,'priority'=>'high',我添加了我希望在應用程序完全關閉后能夠接收通知

class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, MessagingDelegate {

var window: UIWindow?
let gcmMessageIDKey = "message_id"

static var DEVICE_ID = String()
var msg_body = ""
var msg_title = ""

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

    UIApplication.shared.statusBarStyle = .lightContent

    FirebaseApp.configure()
    Messaging.messaging().delegate = self

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

    return true
}

func connectToFcm() {
    Messaging.messaging().shouldEstablishDirectChannel = true
}

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

    if let refreshedToken = InstanceID.instanceID().token() {
        AppDelegate.DEVICE_ID = refreshedToken
        print("*********")
        print("InstanceID token: \(refreshedToken)")
        print("*********")
    }else{
        print("Can't get token device")
    }

    connectToFcm()

}

func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
    print("Failed to register for remote notifications with error: \(error)")
}


func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {

    print(userInfo)

    guard let data: [String: Any] = userInfo as? [String: Any] else {
        return
    }

            let listData = data["notification"] as! String
            let jsonData = listData.data(using: .utf8)
            do {
                let decoder = JSONDecoder()
                let dataJson = try decoder.decode(DataNotif.self, from: jsonData!)

                msg_body = dataJson.body!
                msg_title = dataJson.title!

                createNotification(title: msg_title, body: msg_body)

            }catch{
                print("error")
            }

    completionHandler(UIBackgroundFetchResult.newData)
}

// messaging
func messaging(_ messaging: Messaging, didRefreshRegistrationToken fcmToken: String) {

    if let token = InstanceID.instanceID().token() {
        AppDelegate.DEVICE_ID = token
        print("*********")
        print("Token Instance: \(token)")
        print("*********")
    }

    connectToFcm()
}

func messaging(_ messaging: Messaging, didReceive remoteMessage: MessagingRemoteMessage) {

    print("Received data message: \(remoteMessage.appData)")

    guard let data: [String: Any] = remoteMessage.appData as? [String: Any] else {
        return
    }

            let listData = data as! NSDictionary
            let jsonData = listData.data(using: .utf8)
            do {
                let decoder = JSONDecoder()
                let dataJson = try decoder.decode(DataNotif.self, from: jsonData!)

                msg_body = dataJson.body!
                msg_title = dataJson.title!

                createNotification(title: msg_title, body: msg_body)

            }catch{
                print("error")
          }


}

func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {

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

func applicationDidBecomeActive(_ application: UIApplication) {
    UIApplication.shared.applicationIconBadgeNumber = 0
    connectToFcm()
}

func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {

    completionHandler(.newData)
}

func applicationDidEnterBackground(_ application: UIApplication) {
    Messaging.messaging().shouldEstablishDirectChannel = false
    print("Disconnect FCM")
}

func createNotification(title: String, body: String) {
    let content = UNMutableNotificationContent()
    content.title = NSString.localizedUserNotificationString(forKey: title, arguments: nil)
    content.body = NSString.localizedUserNotificationString(forKey: body, arguments: nil)
    content.sound = UNNotificationSound.default
    content.badge = NSNumber(integerLiteral: UIApplication.shared.applicationIconBadgeNumber + 1)

    let request = UNNotificationRequest.init(identifier: "pushNotif", content: content, trigger: nil)

    let center = UNUserNotificationCenter.current()
    center.add(request)
}
}

您必須啟用以下內容 :) 在此處輸入圖片說明

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM