Auth0.js 9.14.0 captcha?

when i try to create Universal Login custom Page using auth0.js, i found param captcha.

auth0.js 9.14.0 needs captcha.getValue()
this param is what?

div ~class=captcha-container~ tag display CAPTCHA that is set by [anormaly detection → bot detection → simple captcha] ??

https://auth0.com/docs/libraries/auth0js#webauth-login-
this docment is not written about this param “captcha”…

    webAuth.login({
      realm: databaseConnection,
      email: email,
      password: password,
      captcha: captcha.getValue()
    }, function(err) {
      if (err) displayError(err);
    });

Hello, @kitafujifumiya009311 - welcome back to the Auth0 Community!

That is a value that is used when Bot Detection is on, which will allow for your page to get the value of the captcha used to prevent Credential Stuffing attacks.

Let us know if you have any other questions!

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.