NAME Net::APNS - Apple Push Notification Service for perl. SYNOPSIS use Net::APNS; my $APNS = Net::APNS->new; my $Notifier = $APNS->notify({ cert => "cert.pem", key => "key.pem", passwd => "pass" }); $Notifier->devicetoken("...."); $Notifier->message("message"); $Notifier->badge(4); $Notifier->sound('default'); $Notifier->custom({ custom_key => 'custom_value' }); $Notifier->write; DESCRIPTION Net: