金字塔与 reCaptcha:如何实现?
我想在我的网站上添加最受欢迎的验证码客户端 - reCaptcha。 但我在互联网上没有找到任何示例或教程...... 也许有人知道该怎么做?
我将非常感谢任何帮助!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在我的网站上添加最受欢迎的验证码客户端 - reCaptcha。 但我在互联网上没有找到任何示例或教程...... 也许有人知道该怎么做?
我将非常感谢任何帮助!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
此处提供了 reCATPCHA 的完整 API 文档。它可能也有示例代码。
我通过访问 reCAPTCHA 网站 并点击 常见问题解答链接。
当然,您可以在此处注册该服务。从主页上可以很明显地看出这一点。
There is full API documentation available for reCATPCHA here. It probably has sample code, too.
I found this by going to the reCAPTCHA website and clicking on the FAQ link.
And of course, you sign up for the service here. That's pretty obvious from the home page.
您需要做两件事:
1)在您的网站上显示小部件。复制 此 reCaptcha 文档页面上的 html 和 javascript 代码。
2) 验证用户的响应。为此,您可以使用 python 客户端。
this stackoverflow post<中有一个关于如何使用它的示例/a>.
祝你好运!
You need to do two things:
1) Display the widget on your site. Copy the html and javascript code on this reCaptcha documentation page.
2) Validate the user's response. You can use the python client for this.
There is an example on how to use this in this stackoverflow post.
Good luck!