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->solve;

    # solved
    if ($captcha) {

        # verify captcha

        if (!$is_ok) {
            $captcha->report;
        }
    }

    # not solved
    else {

        # get new captcha
    }

DESCRIPTION

ATTRIBUTES

METHODS

SEE ALSO