Unlimited captcha solver
License
AZcaptcha/WebService-AZCaptcha
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more about the CLI.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
NAME WebService::AZCaptcha - API azcaptcha.com SYNOPSIS use WebService::AZCaptcha; my $azc = WebService::AZCaptcha->new( key => '......', # from https://azcaptcha.com/setting ); my $b = $azc->getbalance() or die $azc->errstr; print "Balance: $b\n"; my $res = $azc->decaptcha("$Bin/captcha.png", language => 1) or die $azc->errstr; print "Got text as " . $res->{text} . "\n"; if (0) { $azc->reportbad($res->{id}) or die $azc->errstr; } DESCRIPTION WebService::AZCaptcha is for <https://azcaptcha.com/setting> METHODS decaptcha my $res = $azc->decaptcha($filename_or_file_content) or die $azc->errstr; my $res = $azc->decaptcha( $filename_or_file_content phrase => 1, language => 1, # check https://azcaptcha.com/setting ) or die $azc->errstr; print "Got text as " . $res->{text} . "\n"; if (0) { $azc->reportbad($res->{id}) or die $azc->errstr; } upload my $captcha_id = $azc->upload($filename_or_file_content) or die $azc->errstr; my $captcha_id = $azc->upload( $filename_or_file_content phrase => 1, language => 1, # check https://azcaptcha.com/setting ) or die $azc->errstr; get my $text = $azc->get($captcha_id) or die $azc->errstr; get_multi my @texts = $azc->get_multi($captcha_id1, $captcha_id2) or die $azc->errstr; getbalance my $b = $azc->getbalance() or die $azc->errstr; print "Balance: $b\n"; reportbad my $res = $azc->reportbad($captcha_id) or die $azc->errstr; getstats my $res = $azc->getstats($date) or die $azc->errstr; load my $load = $azc->load(); request my $res = $azc->request(action => 'getstats', date => $date); underlaying method to build request AUTHOR Fayland Lam <fayland@gmail.com> COPYRIGHT Copyright 2014- Fayland Lam LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
About
Unlimited captcha solver
Topics
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published