メインコンテンツへスキップ
Example
import InterstitialCaptcha from "@auth0/auth0-acul-js/interstitial-captcha";
const interstitialCaptcha = new InterstitialCaptcha();
interstitialCaptcha.submitCaptcha({
 captcha: "captchaValue",
});

コンストラクター

InterstitialCaptcha
Constructor

プロパティ

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user
screenIdentifier
string

メソッド

getErrors
コンテキストからトランザクションエラーの配列を取得します。存在しない場合は空の配列を返します。トランザクションコンテキストから取得した Error オブジェクトの配列です。
submitCaptcha
Promise<void>

注記

このメソッドは、InterstitialCaptcha 関連の設定を処理します。
Example
import InterstitialCaptcha from "@auth0/auth0-acul-js/interstitial-captcha";

const interstitialCaptcha = new InterstitialCaptcha();
interstitialCaptcha.submitCaptcha({
 captcha: "captchaValue",
});