Apple 推送通知服务,当设备离线时

发布于 2024-11-26 16:37:48 字数 125 浏览 1 评论 0原文

当设备在线时,我在沙箱开发阶段的推送通知服务运行良好。它不断收到推送消息。

但是,如果在设备离线(无 3g 或 WiFi)时从提供商(服务器)发送消息,则设备在上线时不会收到推送消息。

对此有什么想法吗?

My push notification service in sandbox development phase works well when the device is online. It keeps getting push messages.

However if a message is sent from te provider (server) when the device is offline (no 3g or wifi), the device is not receiving the push message when it gets online.

Any thoughts on this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌伤浅笑 2024-12-03 16:37:48

更新新的改写文档是此处

谢谢AL

在了解 Apple 的服务质量后https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html

设备上的每个应用程序仅保留一个通知:

Apple 推送通知服务包括执行存储和转发功能的默认服务质量 (QoS) 组件。如果 APN 尝试传送通知但设备处于离线状态,则 QoS 会存储该通知。 设备上的每个应用程序仅保留一个通知:从该应用程序的提供商处收到的最后一个通知。当离线设备稍后重新连接时,QoS 会将存储的通知转发给该设备。 QoS 将通知保留一段有限的时间,然后再将其删除。

UPDATE New rephrased documentation is here

Thanks AL

After going through Apple's Quality of Service https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html

It retains only one notification per application on a device:

Apple Push Notification Service includes a default Quality of Service (QoS) component that performs a store-and-forward function. If APNs attempts to deliver a notification but the device is offline, the QoS stores the notification. It retains only one notification per application on a device: the last notification received from a provider for that application. When the offline device later reconnects, the QoS forwards the stored notification to the device. The QoS retains a notification for a limited period before deleting it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文