Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

apple push notification limitation

I'm wondering if there is a limit to the number of apple push notifications we can send to users at one time ? in other words, can i send 100,000 push notifications at once using the APNS service?

like image 715
BlackEagle Avatar asked Jun 21 '11 06:06

BlackEagle


People also ask

Does Apple block push notifications?

iOS enables you to both disable push notifications entirely, or turn them off for individual apps. To access iOS notifications settings, go into the Settings > Notifications menu. From that list, you can configure each app's notifications settings or disable them.

What is the character limit for push notification iOS?

What Are App Push Notification Character Limits? For iOS devices, the character limit is 178 before the text is cut off. This means four lines of text. On Android, the character limits are 65 characters for titles and 240 for descriptions.

How many notifications is too much?

As a rule of thumb, do not send more than 3-5 notifications every week. Even then, make sure that the notifications have something relevant for the user. Understand how users would use your app in their daily lives and identify opportunities to enhance that experience using push messages.


1 Answers

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.

like image 139
Luis Ascorbe Avatar answered Sep 27 '22 15:09

Luis Ascorbe