CAPTCHAFORUM
Administrator
imagetyperzapi is a super easy to use bypass captcha API wrapper for imagetyperz.com captcha service
Installation
How to use?
There are 2 ways of authenticating with the server. With access_token or username and passord. We encourage you to use the token based authentication because it's more secure and username & password authentication might be removed at some point from the API libraries.
All the methods that end with _token will be used for token authentication
Get balance
Image captcha
Submit image captcha
Documentation https://githubmemory.com/repo/imagetyperz-api/imagetyperz-api-perl
Installation
git clone https://github.com/imagetyperz-api/imagetyperz-api-perl
How to use?
use ImageTyperzAPI;
There are 2 ways of authenticating with the server. With access_token or username and passord. We encourage you to use the token based authentication because it's more secure and username & password authentication might be removed at some point from the API libraries.
All the methods that end with _token will be used for token authentication
Get balance
ImageTyperzAPI::account_balance_token($access_token);
Image captcha
Submit image captcha
Code:
# without optional parameters
my $captcha_text = ImageTyperzAPI::solve_captcha_token($access_token, 'captcha.jpg', '1');
# with (all) optional parameters set
# token [or username & password if legacy], image, case sensitive, is phrase, is math, alphanumeric, minlength, maxlength, refid
my $captcha_text = ImageTyperzAPI::solve_captcha_token($access_token, 'captcha.jpg', 'true', 'true', 'true', '2', '1', '7');
Documentation https://githubmemory.com/repo/imagetyperz-api/imagetyperz-api-perl