Hi In IOS9 maximum how many bytes we can sent to APNS server, and also is it possible to send the image to APNS server
Asked
Active
Viewed 95 times
0
-
1Refer to [this](http://stackoverflow.com/questions/26233730/apn-apple-push-notification-payload-size-limit) – zc246 Apr 22 '16 at 09:36
-
http://stackoverflow.com/a/33440803/767329 & if you will handle the BLOB object conversion probably yes. – Mihriban Minaz Apr 22 '16 at 09:50
2 Answers
2
The body data must not be compressed and its maximum size is 4KB (4096 bytes)
You can send image url (use url shortner) Then send image url via APNs

Muhammad Adnan
- 2,668
- 15
- 27
0
No, you can not send image in Remote notification payload to APNS. You can send a URL for the image and then fetch the image on the device.
The maximum payload size is 4096 bytes.
You can refer Apple's Local and Remote programming guide for the same.

UditS
- 1,936
- 17
- 37