The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

OAuth2::Google::Plus::UserInfo

DESCRIPTION

implements acallback to https://www.googleapis.com/oauth2/v2/userinfo, retrieving the users google-id, email and verification status.

SYNOPSYS

    use OAuth2::Google::Plus::UserInfo;

    my $info = OAuth2::Google::Plus::UserInfo->new( access_token => $access_token );

    if( $info->is_success ) {
        my $email = $info->email;

        # ...
    }