Member Junction
    Preparing search index...

    Result from initiating OAuth authorization flow

    interface InitiateAuthorizationResult {
        authorizationUrl?: string;
        errorMessage?: string;
        expiresAt?: Date;
        stateParameter?: string;
        success: boolean;
        usedDynamicRegistration?: boolean;
    }
    Index

    Properties

    authorizationUrl?: string

    URL to redirect user for authorization

    errorMessage?: string

    Error message if failed

    expiresAt?: Date

    When this authorization flow expires

    stateParameter?: string

    State parameter for tracking this flow

    success: boolean

    Whether initialization succeeded

    usedDynamicRegistration?: boolean

    Whether DCR was used (true) or pre-configured credentials (false)