I am implementing sending notifications from a .jar, notifications in
I am implementing sending notifications from a .jar, notifications in
I have managed to eliminate the error:
Delivery error: javapns.notification.exceptions.PayloadMaxSizeExceededException:
Total payload size exceeds allowed limit (payload is 259 bytes, limit is 256)
For this I had to modify the line:
PushNotificationPayload payload = PushNotificationPayload.complex();
for this one:
PushNotificationPayload payload = PushNotificationBigPayload.complex();