|
NAMENet::APNs::Extended::Feedback - Client library for APNs feedback service SYNOPSIS use Net::APNs::Extended::Feedback;
my $feedback = Net::APNs::Extended::Feedback->new(
is_sandbox => 1,
cert_file => 'xxx',
);
my $feedbacks = $feedback->retrieve_feedback;
# [
# {
# time_t => ...,
# token_bin => ...,
# token_hex => ...,
# },
# {
# time_t => ...,
# token_bin => ...,
# token_hex => ...,
# },
# ...
# ]
METHODSnew(%args)Create a new instance of "Net::APNs::Extended::Feedback". Supported args same as Net::APNs::Extended. retrieve_feedback()This method is receive the feedback from APNs. my $feedbacks = $feedback->retrieve_feedback; AUTHORxaicron <xaicron {@} cpan.org> COPYRIGHTCopyright 2012 - xaicron LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
|