aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface ApiGetAccessTokenResponse

    The response returned when a user obtains or refreshes an access token, containing the token string, the HTTP header name (usually "Authorization"), and the token's expiration timestamp in milliseconds.

    interface ApiGetAccessTokenResponse {
        accessToken: string;
        expirationTimestamp: number;
        header: string;
    }
    Index
    accessToken: string

    The newly issued access token to be used in Authorization headers.

    expirationTimestamp: number

    The UNIX timestamp (milliseconds) after which the token is invalid.

    header: string

    The header key that should contain accessToken (e.g., "Authorization").