Group
Extension

Matches 4

Net-Plurk ( C/CL/CLSUNG/Net-Plurk-0.11.tar.gz, CLSUNG, 2011; MetaCPAN )
Net-Plurk/lib/Net/Plurk.pm ( view source; MetaCPAN )
package Net::Plurk;
use feature ':5.10';
use Moose;
use URI;
use JSON::Any;
use AnyEvent::HTTP;
use Net::Plurk::UserProfile;
use Net::Plurk::OAuth;
use DateTime;
use Data::Dumper;

use namespace::auto
{
            my $plurk = shift;
            # blah
        },
        );
    $p->listen;
    my $json = $p->callAPI( '/api');
    ...

=head1 EXPORT

A list of functions that can be exported.  You ca
file {
    my ($self, $user) = @_;
    my $json_data = $self->callAPI(
        '/Profile/getPublicProfile',
        user_id => $user,
    );
    return $json_data if $self->raw_output;
    $self->publ
Net-Plurk ( C/CL/CLSUNG/Net-Plurk-0.11.tar.gz, CLSUNG, 2011; MetaCPAN )
Net-Plurk/lib/Net/Plurk/UserProfile.pm ( view source; MetaCPAN )
', default => 'JSON::false');
has 'is_fan' => (is => 'ro', isa => 'Maybe[Object]', default => 'JSON::false');
has 'is_following' => (is => 'ro', isa => 'Maybe[Object]', default => 'JSON::false');

no 
Net-Plurk ( C/CL/CLSUNG/Net-Plurk-0.11.tar.gz, CLSUNG, 2011; MetaCPAN )
Net-Plurk/lib/Net/Plurk/User.pm ( view source; MetaCPAN )
' => (is => 'ro', isa => 'Maybe[Object]', default => 'JSON::false');
has 'email_confirmed' => (is => 'ro', isa => 'Maybe[Object]', default => 'JSON::false');

sub _build_display_name {
    my $self = 
Net-Plurk ( C/CL/CLSUNG/Net-Plurk-0.11.tar.gz, CLSUNG, 2011; MetaCPAN )
Net-Plurk/lib/Net/Plurk/OAuth.pm ( view source; MetaCPAN )
;
has _request => (isa => 'Net::OAuth::Request', is => 'rw');
has json_parser => (isa => 'JSON::Any', is => 'ro', default => sub {JSON::Any->new()});

=head1 NAME

Net::Plurk::OAuth 

=head1 SYNOPSIS
er->{Reason});
		$self->_errorcode($header->{Status});
	    }
            $data = $self->json_parser->from_json($data);
            $w->send;
        }
    );
    $w->recv;
    return wantarray ? ($da

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.