具有图像选择挑战的企业 reCaptcha
Enterprise reCaptcha with image selection challenge
我们实施了 google 企业 reCaptcha,这是基于分数的决策。但我们正在寻找企业 recaptcha,弹出图像选择挑战。
请让我们知道,是否有可能,或者企业帐户只能使用基于分数或复选框的验证码?
代码如下:
https://www.google.com/recaptcha/enterprise.js?render=<site_key>
要执行 Recaptcha:
public executeEnterpriseCaptcha(){
(window as any).grecaptcha.enterprise.execute(environment.captchaSiteKeyEntpr, {action: 'CONTACTUS'}).then((token) => {
this.contactUsFun(token);
});
}
以上要求可能适用于 V2 版本,但我正在寻找企业版本,我已经检查了企业验证码的文档,找不到任何与基于图像的挑战相关的内容。
enter image description here
https://cloud.google.com/recaptcha-enterprise/docs/faq
在此先感谢大家的帮助
reCaptcha enterprise 只有两个选项:
- 评分挑战(这永远不会显示图像选择挑战)
- 复选框挑战(如果他们认为用户可能是机器人,有时会显示图像选择挑战)
https://cloud.google.com/recaptcha-enterprise/docs/choose-key-type
如果您希望用户收到图片挑战提示,可以在您的网站上实施复选框挑战。在企业仪表板中,您可以将挑战安全性提高到最高级别:
这样,每当 Google 认为与您的网站交互的用户有可能是机器人时,它就会自动显示图像选择挑战。但它不会每次都弹出。
我们实施了 google 企业 reCaptcha,这是基于分数的决策。但我们正在寻找企业 recaptcha,弹出图像选择挑战。 请让我们知道,是否有可能,或者企业帐户只能使用基于分数或复选框的验证码? 代码如下:
https://www.google.com/recaptcha/enterprise.js?render=<site_key>
要执行 Recaptcha:
public executeEnterpriseCaptcha(){
(window as any).grecaptcha.enterprise.execute(environment.captchaSiteKeyEntpr, {action: 'CONTACTUS'}).then((token) => {
this.contactUsFun(token);
});
}
以上要求可能适用于 V2 版本,但我正在寻找企业版本,我已经检查了企业验证码的文档,找不到任何与基于图像的挑战相关的内容。
enter image description here https://cloud.google.com/recaptcha-enterprise/docs/faq
在此先感谢大家的帮助
reCaptcha enterprise 只有两个选项:
- 评分挑战(这永远不会显示图像选择挑战)
- 复选框挑战(如果他们认为用户可能是机器人,有时会显示图像选择挑战)
https://cloud.google.com/recaptcha-enterprise/docs/choose-key-type
如果您希望用户收到图片挑战提示,可以在您的网站上实施复选框挑战。在企业仪表板中,您可以将挑战安全性提高到最高级别:
这样,每当 Google 认为与您的网站交互的用户有可能是机器人时,它就会自动显示图像选择挑战。但它不会每次都弹出。