AniLink - v2.0.0
    Preparing search index...

    Interface MalTokenResponse

    MalTokenResponse is the successful MyAnimeList OAuth2 token response returned by getMalAccessToken and refreshMalAccessToken.

    It carries the bearer token consumed by MalAnimeOperation and MalUserOperation through MalCredentials.

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

    The bearer access token used by MAL REST operations.

    expires_in: number

    The access-token lifetime in seconds.

    refresh_token?: string

    A refresh token, when MAL issues one.

    scope?: string

    The granted scopes, when MAL returns them.

    token_type: string

    The token type, normally Bearer.