Member Junction
    Preparing search index...

    OAuth token set with expiration tracking

    interface OAuthTokenSet {
        accessToken: string;
        expiresAt: number;
        issuer: string;
        lastRefreshAt?: number;
        refreshCount: number;
        refreshToken?: string;
        scope?: string;
        tokenType: string;
    }
    Index

    Properties

    accessToken: string

    Access token

    expiresAt: number

    Unix timestamp when access token expires

    issuer: string

    Authorization server issuer URL

    lastRefreshAt?: number

    Unix timestamp of last refresh

    refreshCount: number

    Number of times token has been refreshed

    refreshToken?: string

    Refresh token (optional)

    scope?: string

    Granted scopes (space-delimited)

    tokenType: string

    Token type (usually 'Bearer')