Member Junction
    Preparing search index...

    A minted access token plus its derived expiry.

    interface OAuth2Token {
        AccessToken: string;
        ExpiresAt: number;
        RefreshToken?: string;
        Scope?: string;
        TokenType: string;
    }
    Index

    Properties

    AccessToken: string

    The bearer access token to send as Authorization: Bearer {AccessToken}.

    ExpiresAt: number

    Absolute epoch-ms time at which this token should be considered expired.

    RefreshToken?: string

    The (possibly rotated) refresh token returned by the server, if any.

    Scope?: string

    Scopes granted by the server, if reported.

    TokenType: string

    Token type reported by the server (typically Bearer).