The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pcore::API::AntiCaptcha

SYNOPSIS

    my $api = Pcore::API::AntiCaptcha1->new( api_key => '...' );

    my $captcha = $api->new_image_captcha($image);

    $captcha->verify( sub ($captcha) {
        if ( $captcha->{data} eq 'OK' ) {
            return res 200;
        }
        else {
            return res 500;
        }
    } );

DESCRIPTION

ATTRIBUTES

METHODS

SEE ALSO