【发布时间】:2017-05-20 05:30:52
【问题描述】:
我正在尝试在这里实现一个基本的函数,当我的应用程序被后台或暂停时将被调用。
实际上,我们的目标是每天发送大约 5 个,因此 Apple 不应限制我们的利用率。
我已经整理了以下使用 firebase 和 userNotifications 的内容,现在,它在我的应用委托中。
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")
}
}
结果如下:
当应用在前台时:
我在“startDownload func”中得到日志
我得到“下载完成”的日志。
当应用在后台时:
我在“startDownload func”中得到日志
我没有收到“下载完成”的日志。
消音器不工作,即当应用程序在后台运行时,我仍然在托盘中收到通知。
我正在使用 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 以根据评论包含函数
【问题讨论】:
-
你的代码没有意义。您正在配置后台下载,但
application(_:handleEventsForBackgroundURLSession identifier:completionHandler:)和urlSessionDidFinishEvents(forBackgroundURLSession:)的实现在哪里???您是否遗漏了一半的应用程序委托代码,或者您只是忘记编写最重要的部分? :) -
@matt 我漏掉了最重要的部分! :0 我认为 didFinishDownloadingTo 是完成时调用的方法,其中的代码将是完成处理程序。我会将这些函数放在我的 App 委托的扩展中:URLSessionDownloadDelegate 吗?我对如何拼凑起来有点困惑。也是在这个完成处理程序执行代码之后,我应该期望在上面的代码中看到“完成下载”打印吗??
-
@matt 最初我有一个完成处理程序作为任务定义的一部分,但是在运行它时,我在控制台中收到一个错误,指出在后台模式下不允许完成处理程序并使用委托而是
-
我注意到您正在使用
print语句进行调试。我是否从中推断出您正在从 Xcode 调试器运行应用程序?当应用程序附加到调试器运行时,后台行为会发生很大变化。所以,很好,以这种方式进行初始测试,但你必须想出一些其他的调试机制才能真正完成后台下载。我通常使用NSLog(或者,我认为您也可以使用os_log)登录,然后查看我的应用程序的控制台。或者您可以向某个助手应用发送消息并通过该应用进行观看。 -
@Rob 您的推断是正确的,感谢您的提示!一旦我完成了这个初始部分,我将切换到 NSLog 和控制台
标签: swift firebase background-fetch remote-notifications urlsession