MonoCloud Authentication SDK
    Preparing search index...

    Stores various parameters used in the authentication request

    interface AuthState {
        codeVerifier?: string;
        maxAge?: number;
        nonce: string;
        resource?: string;
        scopes: string;
        state: string;
    }
    Index

    Properties

    codeVerifier?: string

    Optional. A code verifier used in PKCE (Proof Key for Code Exchange) flow.

    maxAge?: number

    Optional. The maximum age (in seconds) of the session.

    nonce: string

    A unique value used to prevent replay attacks in OAuth flows.

    resource?: string

    Optional. Space-separated list of resources to scope the access token to

    scopes: string

    Space-separated list of scopes to request

    state: string

    A unique value used to maintain state between the sign-in request and the callback.