Menu

使用 NodeJS 和 Axios 绕过 reCaptcha V2


您将会学习

  • 您会了解到如何通过 NodeJS 脚本提交内有 Recaptcha 谜题的窗体。
  • 安装并导入 anticaptchaofficial 和 axios npm 模块。
  • 了解如何编写一个 NodeJS 脚本来解决 Recaptcha V2 问题并提交表单。
Source code

设置 NodeJS 和集成开发环境。

  • Node JS:请在此处下载适用于您操作系统的 NodeJS
  • 代码编辑器:建议使用 VS CodeAtom。二者都是免费 IDE。

安装并导入 anticaptchaofficial 和 axios npm 模块。

mkdir tutorial
cd tutorial
npm init -y
npm install @antiadmin/anticaptchaofficial axios

Github

https://github.com/anti-captcha/solving-captcha-concepts/blob/master/tutorial1.js