MonoCloud Authentication SDK
    Preparing search index...

    Options used to control token retrieval and refresh behavior when calling getTokens().

    interface GetTokensOptions {
        forceRefresh?: boolean;
        refetchUserInfo?: boolean;
        resource?: string;
        scopes?: string;
    }

    Hierarchy

    Index

    Properties

    forceRefresh?: boolean

    When true, forces a refresh of the access token even if the current token has not expired.

    refetchUserInfo?: boolean

    When enabled, refetches user information from the UserInfo endpoint after tokens are refreshed.

    resource?: string

    Space-separated list of resource indicators that the new access token should be issued for.

    The requested resources must have been previously granted during the original authorization flow.

    scopes?: string

    Space-separated list of scopes to request for the refreshed access token.

    The requested scopes must have been granted during the original authorization flow.