I'm now working on Apple Push Notification Service and an iPhone application with apns-php.
As everyone using APNS knows there is a limit when using it - we can't send a payload over 256 bytes per message. However, I found a website saying there is another limitation that prohibits from sending a payload in which the network usage exceeds 5000 bytes to 7000 bytes in a connection.
I've been looking for an evidence to this phenomenon or official documents, but found nothing for sure.
Could you please let me know if there is such an undocumented APN restriction in order to send a payload successfully? Did you encounter any other strange experiences while using APN?
The website is right here (Sorry, it's Japanese.)
It says:
- Don't send a message that exceeds 256 bytes.
- You will get banned from APNS if you try to send a message with 5000 bytes to 7000 bytes and APNS destroys your session. Then you need to recreate an APN session with a few while sleeping.
Any comments or ideas will be appreciated.