Net::Plurk is a Perl interface to the Plurk API.
SYNOPSIS
Quick summary of what the module does.
Perhaps a little code snippet.
use Net::Plurk;
my $api_key = $PLURKAPIKEY // "dKkIdUCoHo7vUDPjd3zE0bRvdm5a9sQi";
my $user = $PLURKUSER // 'nobody';
my $pass = $PLURKPASS // 'nopass';
my $p = Net::Plurk->new(api_key => $api_key);
my $profile = $p->login(user => $user, pass => $pass );
$p->add_events(
on_new_plurk => sub {
my $plurk = shift;
use Data::Dumper; warn Dumper $plurk;
},
on_private_plurk => sub {
my $plurk = shift;
# blah
},
);
$p->listen;
my $json = $p->api( path => '/api');
...
Product's homepage
Requirements:
· Perl