Trait inth_oauth2::token::Token

source ·
pub trait Token<L: Lifetime>: FromResponse {
    fn access_token(&self) -> &str;
    fn scope(&self) -> Option<&str>;
    fn lifetime(&self) -> &L;
}
Expand description

OAuth 2.0 tokens.

See RFC 6749, section 5.

Required Methods

Returns the access token.

See RF C6749, section 1.4.

Returns the scope, if available.

Returns the token lifetime.

Implementors