Member Junction
    Preparing search index...

    OAuth 2.0 token response

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

    Properties

    access_token: string

    Access token

    expires_in?: number

    Seconds until access token expires

    refresh_token?: string

    Refresh token for obtaining new access tokens

    scope?: string

    Granted scopes (space-delimited)

    token_type: string

    Token type (usually 'Bearer')