MonoCloud Authentication SDK
    Preparing search index...

    OAuth 2.0 / OpenID Connect token endpoint response.

    interface Tokens {
        access_token: string;
        expires_in?: number;
        id_token?: string;
        refresh_token?: string;
        scope?: string;
        token_type?: string;
    }
    Index

    Properties

    access_token: string

    Access token issued by the authorization server.

    expires_in?: number

    Lifetime of the access token (in seconds) from the time the response was issued.

    id_token?: string

    Optional ID token containing authentication claims about the user.

    refresh_token?: string

    Optional refresh token used to obtain new access tokens without requiring user re-authentication.

    scope?: string

    Space-separated list of scopes granted for the access token.

    token_type?: string

    Token type issued.