Group
Extension

Matches 2

OAuth2-Google-Plus ( M/MV/MVHENTEN/OAuth2-Google-Plus-0.03.tar.gz, MVHENTEN, 2014; MetaCPAN )
OAuth2-Google-Plus/lib/OAuth2/Google/Plus.pm ( view source; MetaCPAN )
kage OAuth2::Google::Plus;
    use Moo;
    use MooX::late;

    use Carp::Assert;
    use JSON qw|decode_json|;
    use LWP::UserAgent;
    use URI;

    sub ENDPOINT_URL {
        return 'https://ac
onse( $response );

        if( $response->is_success ){
            my $json     = decode_json( $response->content );
            return $json->{access_token};
        }

        return;
    }
}

1;
OAuth2-Google-Plus ( M/MV/MVHENTEN/OAuth2-Google-Plus-0.03.tar.gz, MVHENTEN, 2014; MetaCPAN )
OAuth2-Google-Plus/lib/OAuth2/Google/Plus/UserInfo.pm ( view source; MetaCPAN )
:Google::Plus::UserInfo;
    use Moo;
    use MooX::late;

    use LWP::UserAgent;
    use JSON qw|decode_json|;
    use Carp::Assert;
    use URI;

    has access_token => (
        is         => 'ro
esponse );

        if( $response->is_success ){
            my $json     = decode_json( $response->content );
            return $json;
        }

        return {};
    }

    sub is_success {
     

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