NAME
Net::APNS::Notification - Notify client in Apple Push Notification Service for perl.
SYNOPSIS
use Net::APNS::Notification;
my $APNS = Net::APNS::Notification->new({
cert => "cert.pem",
key => "key.pem",
passwd => "passwd.pem",
});
$APNS->write({
devicetoken => "token",
message => "message",
badge => 0,
});
DESCRIPTION
Net::APNS::Notification is Apple Push Notification Service - push client. Push message to iPhone and get unavalble-devicetoken.
AUTHOR
haoyayoi <st.hao.yayoi@gmail.com>
SEE ALSO
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.