JimmyLaurent / hcaptcha-solver

A library to solve hCaptcha challenges

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hcaptcha-solver

A library to solve hcaptcha challenges

Install

npm install hcaptcha-solver

Quick Example

const solveCaptcha = require('hcaptcha-solver');

(async () => {
    try {
      const response = await solveCaptcha('https://captcha-protected-site.com');
      console.log(response);
      // F0_eyJ0eXAiOiJKV1Q...
    } catch (error) {
      console.log(error);
    }
})();

Credits

About

A library to solve hCaptcha challenges


Languages

Language:JavaScript 100.0%