logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

OAuth::Lite2::Client::Token - Class represents access-token response

Accessors

access_token
       The access token issued by the authorization serve

   expires_in
       The lifetime in seconds of the access token

   refresh_token
       The refresh token, which can be used to obtain new access tokens using the same authorization grant

   scope
       The scope of the access token

   access_token_secret
       DEPRECATED.

Author

       Lyo Kato, <lyo.kato@gmail.com>

Description

       Class represents access-token response

Name

       OAuth::Lite2::Client::Token - Class represents access-token response

Synopsis

           my $t = $client->get_access_token( ... );
           $t->access_token;
           $t->expires_in;
           $t->refresh_token;
           $t->scope;

See Also