A library to solve hcaptcha challenges
npm install hcaptcha-solver
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);
}
})();
- Thanks to Futei