gpt4 book ai didi

npm - 如何从 npm 安装 Google-Recaptcha

转载 作者:行者123 更新时间:2023-12-04 20:23:54 25 4
gpt4 key购买 nike

我正在以某种形式在我的 webapp 中实现 recaptcha。

我已经实现了我的后端部分,我现在正在尝试安装 recapatcha api。

不幸的是,我没有在 google 的 npm 中找到官方软件包。

我应该使用包 googleapis 包括recpatcha或
我应该包括这个脚本:

 <script src="https://www.google.com/recaptcha/api.js" async defer></script>

我问这个是因为我用 构建了我的脚本文件(包括所有来自 npm 的供应商)网络包 .

最佳答案

您只需使用 google reCAPTCHA v3 即可,无需任何 npm 麻烦。

从这里注册:https://www.google.com/recaptcha/admin/create

然后对于前端:

<script src="https://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key"></script>
<script>
grecaptcha.ready(function() {
grecaptcha.execute('reCAPTCHA_site_key', {action: 'homepage'}).then(function(token) {
...
});
});
</script>

在 v3 中,您可以定义您的操作或传递您的 intent
  <script>
grecaptcha.ready(function() {
grecaptcha.execute('reCAPTCHA_site_key', {action: 'homepage'});
});
</script>

关于npm - 如何从 npm 安装 Google-Recaptcha,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44655445/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com