@vicinae/api
    Preparing search index...

    Interface AuthorizationRequestURLParams

    Values of OAuth.AuthorizationRequest. The PKCE client automatically generates the values for you and returns them for OAuth.PKCEClient.authorizationRequest.

    interface AuthorizationRequestURLParams {
        codeChallenge: string;
        codeVerifier: string;
        redirectURI: string;
        state: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    codeChallenge: string

    The PKCE code_challenge value.

    codeVerifier: string

    The PKCE code_verifier value.

    redirectURI: string

    The OAuth redirect_uri value.

    state: string

    The OAuth state value.