10

我希望 iOS11 版本能够解决静默推送问题,该问题在 iOS 的最新 beta 和 GM 版本中。

目前我很难理解,为什么我没有收到任何静默推送消息,这实际上应该唤醒我的应用程序以在后台执行一些需要的任务。

在 iOS 10 中,我只使用后台获取功能并在我的 AppDelegate 中实现了“唤醒代码”,如下面的代码。

在 iOS 11 中,注册代码仍然可以正常工作,我的后端也将推送通知发送到 Apple DEV 服务器(沙箱)和 PROD 服务器(生产版本)。不幸的func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void)是,静默推送通知永远不会调用该函数。

我真的错过了 iOS 11 的内容吗?


@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

  // .. some variables here ...

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

       // register silent push notification in backend
       application.registerForRemoteNotifications()

       // ... some code here ... 


       // Set Background Fetch Intervall for background services / terminated app
       UIApplication.shared.setMinimumBackgroundFetchInterval(UIApplicationBackgroundFetchIntervalMinimum)

       // ... some code here ... 

       return true
   }

   func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
       let tokenParts = deviceToken.map { data -> String in
           return String(format: "%02.2hhx", data)
       }
       let token = tokenParts.joined()
       logger.log.debug("Device Token: \(token)")

       let realm = RealmController()
       let user = realm.getLoggedInUserObject()

       // Send push token to server
       if let user = user {
           let email = user.email!

           let serverController = ServerController.serverController
           serverController.sendPushToken(token: token, email: email) { status in
               if status == 201 {
                // ... some code here ...
               } else {
               // ... some code here ...
               }
           }
       }
   }
   func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
       logger.log.debug(error)
   }
   func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
       logger.log.debug(userInfo)

       let aps = userInfo["aps"] as! [String: AnyObject]
       if aps["content-available"] as? Int == 1 {
          // .... some silent push tasks here ....
       }
   }
}
4

2 回答 2

5

最终更新 2017-10-31

Apple 刚刚发布了 iOS 11.1 的官方(万圣节)版本

Apple 于 10 月 31 日发布软件更新

更新 2017-10-09

苹果今天发布了 iOS11.1 beta 2。他们在发行说明中再次提到了以下说明:

通知已解决的问题

静默推送通知的处理频率更高。(33278611)

我将再次测试此 beta 2 版本并更新此答案以供您参考。

更新 - 测试-> 经过不同场景的一些测试后,这个错误似乎在最新的 iOS11.1 beta 2 版本中得到修复。现在我们只能等待正式发布了。在一些论坛中,他们认为苹果将在 10 月下旬发布 iOS11.1。


较早的帖子

上周我调查了很多时间来寻找关于这个问题的答案。在阅读了苹果发行说明(包括已弃用、更改和新功能)后,我测试了以下情况:

我将空函数添加到我的AppDelegate ,现在静默推送在前台和后台再次起作用

func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
        logger.log.debug("Perform Fetch with completion handler TEST")
    }

我不确定此“解决方法”是否与该问题有关,function application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void)iOS11 中未调用以下内容。

不过,如果您发现相同的行为,您可以尝试并给我反馈。

更新 2017-09-25

在我的情况下,“静默推送”现在可以在前台和后台模式下工作,但如果应用程序被用户或操作系统暂停,则不能。所以这个问题仍然存在并且没有解决 - 任何帮助表示赞赏!有关更多信息,另请参阅此线程: Silent pushes not Delivered to the app on iOS 11


更新 2017-10-05

苹果几天前发布了iOS11.1 beta。他们在发行说明中提到了以下内容:

已解决的通知问题
静默推送通知的处理频率更高。(33278611)

一些开发人员表示此测试版已解决该问题,其他开发人员表示该问题在某些情况下仍然存在。现在,当 Apple 为客户推出 iOS11.1 时会很有趣。

于 2017-09-24T16:35:37.793 回答
0

您所经历的实际上是一个有据可查的行为,而不是一个错误。

Apple 的文档说:“系统将静默通知视为低优先级。您可以使用它们来刷新应用程序的内容,但系统不保证它们的交付。此外,如果总数量过多,静默通知的传递可能会受到限制。变得过多。系统允许的实际静默通知数量取决于当前情况,但不要尝试每小时发送超过两三个静默通知。

总之,静默通知不能保证唤醒您的应用程序。为什么?用户设备后台应用程序被唤醒的频率越高,电池消耗就越高。

根据 IBM 的声明,它说:“随着 iOS 11 的出现,Apple 已经改变了他们处理某些类型推送消息的方式。这样做是为了延长电池寿命,但代价是用户体验可能影响您的应用程序。” 您可以在此处找到更多详细信息。

于 2018-07-19T06:54:29.307 回答