【发布时间】:2021-01-15 22:21:47
【问题描述】:
我的 iOS 应用程序可以接收带有操作按钮的推送通知:
按钮点击通过 UrlSession 和数据任务发送 post http 请求。当应用程序暂停或未运行时,它运行良好。但是当应用程序在后台时它不起作用,例如当用户刚刚从底部向上滑动(或按下主页按钮)时。推送操作句柄,但未发送 http 请求。
从我的 iPhone 的控制台 os_logs 中,我看到 UrlSession 无法从后台建立连接并抛出错误代码 = -1005“网络连接丢失。”。只要我杀死应用程序,它就可以。我尝试了不同的 url 会话配置、后台 url 会话、后台任务,但没有任何效果。我发现的唯一解决方法是使用applicationDidEnterBackground 方法中的exit(0),但强烈建议不要以编程方式杀死应用程序。
问题:如何在应用处于后台时通过推送通知操作建立 http 连接?
我的代码:
class NotificationService: NSObject, UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
// notification processing if app is in foreground
...
}
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
let requestId = String(describing: response.notification.request.content.userInfo["requestId"] ?? "")
switch response.actionIdentifier {
case "CONFIRM_ACTION":
confirmAuthenticationRequest(requestId: requestId, isConfirmed: true)
case "REJECT_ACTION":
confirmAuthenticationRequest(requestId: requestId, isConfirmed: false)
default:
// on notification tap
...
}
completionHandler()
}
private func confirmAuthenticationRequest(requestId: String, isConfirmed: Bool) {
var request = URLRequest(url: url)
request.httpMethod = "POST"
let json: [String: Any] = [
"requestId": requestId,
"deny": !isConfirmed
]
request.httpBody = try? JSONSerialization.data(withJSONObject: json)
request.addValue("application/json", forHTTPHeaderField: "content-type")
let dataTask = urlSession.dataTask(with: request)
dataTask.resume()
}
}
【问题讨论】:
标签: ios swift apple-push-notifications background-process