anyevent-apns-perl
anyevent-apns-perl copied to clipboard
@typester Apple changed json payload max length to 2048 bytes. https://developer.apple.com/library/mac/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/TheNotificationPayload.html
JSON::Any is deprecated, and there are cpantesters failures for AnyEvent::APNS due to JSON::Any not finding any actual JSON libraries to use. As JSON now auto-detects/uses JSON::XS if present, failing to...
Added .gitignore to weed out typical files generated by perl module testing/building.
The following line is almost unuseful because this will be done after encoding payload to JSON. > $payload->{aps}{badge} += 0 So, bring this to the first of the method (before...