apple push notification limitation

岁酱吖の 提交于 2019-11-27 13:09:37
Luis Ascorbe

If you are sending multiple notifications to the same device within a short period of time, the push service will send only the last one.

https://developer.apple.com/library/content/technotes/tn2265/_index.html#//apple_ref/doc/uid/DTS40010376-CH1-TNTAG23

Look "Some Notifications Received, but Not All" in that documentation.

Apple's Tech Note was recently updated to address this question :

There are no caps or batch size limits for using APNs. The iOS 6.1 press release stated that APNs has sent over 4 trillion push notifications since it was established. It was announced at WWDC 2012 that APNs is sending 7 billion notifications daily.

If you're seeing throughput lower than 9,000 notifications per second, your server might benefit from improved error handling logic.

There's no limit on how much notification you can send to Apple APNS server but reminder to avoid using allot of connection because Apple may ban your IP if he think you are doing a DDOS attack.

Also if a user is offline (iPhone out of signal) only the latest push notification will be in saved in apple's APNS server

Yes, you can ! You can also use 20 connexions max for the sending of data.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!