@vicinae/api
    Preparing search index...

    Interface AuthorizationRequest

    The request returned by OAuth.PKCEClient.authorizationRequest. Can be used as direct input to OAuth.PKCEClient.authorize, or to extract parameters for constructing a custom URL in OAuth.AuthorizationOptions.

    interface AuthorizationRequest {
        codeChallenge: string;
        codeVerifier: string;
        redirectURI: string;
        state: string;
        toURL(): 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.

    Methods

    • Constructs the full authorization URL.

      Returns string