CAPTCHAFORUM
Administrator
Post a captcha to the 2Captcha service, then polls until the captcha is decoded.
Installation
Usage
Set up your api key:
	
	
	
		
Decode from a url retrying 5 times if invalid is called (default = 3)
	
	
	
		
Documentation https://www.npmjs.com/package/@jnv/2captcha
			
			Installation
npm install 2captchaUsage
Set up your api key:
		Code:
	
	var solver = require('2captcha');
solver.setApiKey('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
Decode from a url, with a 10 seconds polling interval: (default = 2000ms)
solver.decodeUrl(url, {pollingInterval: 10000}, function(err, result, invalid) {
    console.log(result.text);
});
	Decode from a url retrying 5 times if invalid is called (default = 3)
		Code:
	
	solver.decodeUrl(url, {retries: 5}, function(err, result, invalid) {
    if(!checkIfCaptchaIsValid(result.text)){
    return invalid();
    }
});
	Documentation https://www.npmjs.com/package/@jnv/2captcha