1.0.1 • Published 2 years ago

goless-captcha v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Goless.com Captcha solver

Installation

npm i -s goless-captcha

Usage

const GolessCaptchaSolver = require('goless-captcha');

const solver = new GolessCaptchaSolver({
	token: '	',
	limit: 10, // 10 seconds limit to solve. if not solved - throw error
});

try {
	const guess = await solver.solve({
		image: 'base64 encoded image...',
	})	
} catch (e) {
	// do something with solver error
}