将URLSession和后台提取与使用firebase的远程通知一起使用

时间:2017-01-05 15:42:01

标签: swift firebase background-fetch remote-notifications urlsession

我正在尝试在这里实现一个基本功能,当我的应用程序被后台或暂停时将会调用它。

实际上,我们的目标是每天发送大约5个,因此Apple不应该限制我们的利用率。

我已经整理了以下使用firebase和userNotifications的内容,现在,它已经在我的app委托中。

import Firebase
import FirebaseMessaging
import UserNotifications

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?
    var backgroundSessionCompletionHandler: (() -> Void)?


    lazy var downloadsSession: Foundation.URLSession = {
        let configuration = URLSessionConfiguration.background(withIdentifier: "bgSessionConfiguration")
        configuration.timeoutIntervalForRequest = 30.0
        let session = Foundation.URLSession(configuration: configuration, delegate: self, delegateQueue: nil)
        return session
    }()



    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        // Override point for customization after application launch.
        FIRApp.configure()
        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()
        let token = FIRInstanceID.instanceID().token()!
        print("token is \(token) < ")

        return true
    }



    func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void){
           print("in handleEventsForBackgroundURLSession")
           _ = self.downloadsSession
           self.backgroundSessionCompletionHandler = completionHandler
    }

    //MARK: SyncFunc

    func startDownload() {
        NSLog("in startDownload func")

        let todoEndpoint: String = "https://jsonplaceholder.typicode.com/todos/1"
        guard let url = URL(string: todoEndpoint) else {
            print("Error: cannot create URL")
            return
        }

        // make the request
        let task = downloadsSession.downloadTask(with: url)
        task.resume()
        NSLog(" ")
        NSLog(" ")

    }

    func urlSessionDidFinishEvents(forBackgroundURLSession session: URLSession){
        DispatchQueue.main.async(execute: {
            self.backgroundSessionCompletionHandler?()
            self.backgroundSessionCompletionHandler = nil
        })
    }

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

        NSLog("in didReceiveRemoteNotification")
        NSLog("%@", userInfo)
        startDownload()

        DispatchQueue.main.async {
            completionHandler(UIBackgroundFetchResult.newData)
        }
    }

}

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

             DispatchQueue.main.async {
                completionHandler(UNNotificationPresentationOptions.alert)
             }          
    }
    */
}

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

extension AppDelegate: URLSessionDownloadDelegate {
    func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL){
        NSLog("finished downloading")
    }
}

结果如下:

当应用程序位于前台时:

  1. 我在startDownload func&#34;中得到了日志&#34;

  2. 我收到日志&#34;已完成下载&#34;。

  3. 当应用在后台时:

    1. 我在startDownload func&#34;

    2. 中获取日志&#34;
    3. 我没有得到日志&#34;已完成下载&#34;。

    4. 消音器不工作,即当应用程序背景时,我仍然会在托盘中收到通知。

    5. 我正在使用Postman发送请求并尝试了以下有效内容,这会导致控制台错误'FIRMessaging receiving notification in invalid state 2'

      {
          "to" : "Server_Key", 
          "content_available" : true,
          "notification": {
          "body": "Firebase Cloud Message29- BG CA1"
        }
      }
      

      我具有为后台提取和远程通知设置的功能。该应用程序使用swift 3编写,并使用最新的Firebase

      编辑:更新了AppDelegate以根据评论包含功能

1 个答案:

答案 0 :(得分:2)

一些观察结果:

  1. 当您的应用程序由handleEventsForBackgroundURLSessionIdentifier重新启动时,您不仅要保存完成处理程序,还必须实际启动会话。你似乎在做前者,但不是后者。

    此外,您必须实施urlSessionDidFinishEvents(forBackgroundURLSession:)并调用(并放弃对您的引用)已保存的完成处理程序。

  2. 您似乎正在执行数据任务。但如果您想要后台操作,则必须下载或上传任务。 [您已编辑了问题以使其成为下载任务。]

  3. userNotificationCenter(_:willPresent:completionHandler:)中,您永远不会调用传递给此方法的完成处理程序。因此,当30秒(或其他任何内容)到期时,由于您尚未调用它,您的应用将被立即终止,并且所有后台请求都将被取消。

    因此,willPresent应该在完成请求后立即调用其完成处理程序。不要将此完成处理程序(您已完成处理通知)与稍后提供给urlSessionDidFinishEvents的单独完成处理程序(您已完成处理后台URLSession事件)混淆。

  4. 您保存的后台会话完成处理程序不正确。我建议:

    var backgroundSessionCompletionHandler: (() -> Void)?
    

    保存时,它是:

    backgroundSessionCompletionHandler = completionHandler   // note, no ()
    

    当你在urlSessionDidFinishEvents中调用它时,它是:

    DispatchQueue.main.async {
        self.backgroundSessionCompletionHandler?()
        self.backgroundSessionCompletionHandler = nil
    }
    
相关问题