При попытке запустить код из примера выдается ошибка следующего вида:
Waiting for Error: Cannot find module './anticaptcha'
Код примера взят с оф сайта антикапчи .
// http module should be installed:
// npm i http
// Params:
// your anti-captcha.com account key
var anticaptcha = require('./anticaptcha')('YOUR_API_KEY');
//recaptcha key from target website
anticaptcha.setWebsiteURL("http://makeawebsitehub.com/recaptcha/test.php");
anticaptcha.setWebsiteKey("6LfI9IsUAAAAAKuvopU0hfY8pWADfR_mogXokIIZ");
anticaptcha.createTaskProxyless(function (err, taskId) {
if (err) {
console.error(err);
return;
}
console.log('Got task ID', taskId);
//wait for solution and print to console
anticaptcha.getTaskSolution(taskId, function (err, taskSolution) {
if (err) {
console.error(err);
return;
}
console.log(taskSolution);
});
}
);