1.0.0 • Published 3 years ago

hcaptcha-solver-plus v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

hcaptcha-solver-plus

A library to solve hcaptcha challenges

Install

npm install hcaptcha-solver-plus

Quick Example

const solveCaptcha = require("hcaptcha-solver-plus");

(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

1.0.0

3 years ago