hcaptcha-solver-plus
A library to solve hcaptcha challenges
Install
npm install @hitthemoney/hcaptcha-solver
Quick Example
const solveCaptcha = require("@hitthemoney/hcaptcha-solver");
(async () => {
try {
const response = await solveCaptcha("https://captcha-protected-site.com", {
siteKey: "site-key"
});
console.log(response);
// F0_eyJ0eXAiOiJKV1Q...
} catch (error) {
console.log(error);
}
})();
Credits
- Original Repository by Jimmy Laurent
- Thanks to Futei