@nycu-sdc/core-system-sdk
    Preparing search index...

    Interface ResponsesOauthAnswerRequest

    Request model for initiating an OAuth answer

    interface ResponsesOauthAnswerRequest {
        callback: string;
        provider: AuthOAuthProviders;
        questionId: string;
        questionType: "OAUTH_CONNECT";
        redirect?: string;
    }
    Index

    Properties

    callback: string

    The callback URL for the OAuth flow.

    The OAuth provider to use.

    questionId: string

    The question being answered.

    questionType: "OAUTH_CONNECT"

    The type of the question being answered.

    redirect?: string

    The redirect URL after OAuth completion.