@valon-technologies/gestalt
    Preparing search index...

    Interface AuthorizeRequest

    AuthorizeRequest models RFC 6749 authorization endpoint parameters.

    interface AuthorizeRequest {
        responseType: string;
        clientId: string;
        redirectUri: string;
        scope: string;
        state: string;
    }
    Index

    Properties

    responseType: string

    response_type is typically "code".

    clientId: string
    redirectUri: string
    scope: string
    state: string