$apns->send_multi([ [ $device_token, $payload [, $extra ] ], [ ... ] ... ])
Send notification for each data. The data chunk is same as "send()"
arguments.
$apns->retrieve_error()
Gets error data from APNs. If there is no error will not return
anything.
if (my $error = $apns->retrieve_error) {
die Dumper $error;
}
AUTHOR
xaicron <xaicron {@} cpan.org>
COPYRIGHT
Copyright 2012 - xaicron
LICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.