@inrupt/solid-client-authn-node
    Preparing search index...

    Type Alias AuthorizationRequestState

    The state preserved during an authorization request and sent to the client

    type AuthorizationRequestState = {
        clientId: string;
        codeVerifier: string;
        dpopBound: boolean;
        issuer: string;
        redirectUrl: string;
        state: string;
    }
    Index

    Properties

    clientId: string

    The ID of your application.

    codeVerifier: string

    The code verifier used to generate the authorization code.

    dpopBound: boolean

    True if a DPoP compatible auth_token should be requested.

    issuer: string

    The user's identity provider.

    redirectUrl: string

    The redirect URL to which the user will be redirected after the authorization code has been received.

    state: string

    The state parameter used to generate the authorization code.