Skip to main content
Example
import InterstitialCaptcha from "@auth0/auth0-acul-js/interstitial-captcha";
const interstitialCaptcha = new InterstitialCaptcha();
interstitialCaptcha.submitCaptcha({
 captcha: "captchaValue",
});

Constructors

InterstitialCaptcha
Constructor

Properties

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user
screenIdentifier
string

Methods

getErrors
Retrieves the array of transaction errors from the context, or an empty array if none exist.An array of error objects from the transaction context.
submitCaptcha
Promise<void>

Remarks

This methods handles InterstitialCaptcha related configuration.
Example
import InterstitialCaptcha from "@auth0/auth0-acul-js/interstitial-captcha";

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