Type Alias AuthorizationParams

AuthorizationParams: {
    codeVerifier: string;
    nonce: string;
    redirectUri: string;
    scope: string;
    state: string;
}

Authorization parameters which are used in the authentication request of an OIDC auth code flow.

See https://openid.net/specs/openid-connect-basic-1_0.html#RequestParameters.