Member Junction
    Preparing search index...

    Interface OAuth2AuthCodeCredentialValues

    OAuth credential values stored in CredentialEngine

    interface OAuth2AuthCodeCredentialValues {
        access_token: string;
        authorization_server_issuer: string;
        expires_at: number;
        last_refresh_at?: number;
        refresh_count?: number;
        refresh_token?: string;
        scope?: string;
        token_type: string;
    }
    Index

    Properties

    access_token: string

    OAuth access token

    authorization_server_issuer: string

    Authorization server issuer URL

    expires_at: number

    Unix timestamp when access token expires

    last_refresh_at?: number

    Unix timestamp of last token refresh

    refresh_count?: number

    Number of times token has been refreshed

    refresh_token?: string

    OAuth refresh token (optional)

    scope?: string

    Granted scopes (space-delimited)

    token_type: string

    Token type (usually 'Bearer')