m-tymchyk / php-anticaptcha

PHP client for anti-captcha.com service
MIT License
11 stars 7 forks source link

Do you have realisation of reCAPTCHA (with proxy to)? #2

Closed maxlen closed 1 year ago

m-tymchyk commented 1 year ago

Version 2.0.0 supports reCaptcha with proxy :)

$reCaptchaV2Task = new \AntiCaptcha\Task\RecaptchaV2Task( "http://makeawebsitehub.com/recaptcha/test.php", // <-- target website address "6LfI9IsUAAAAAKuvopU0hfY8pWADfR_mogXokIIZ" // <-- recaptcha key from target website );

$reCaptchaV2Task->setProxy( "8.8.8.8", 1234, "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116", "http", "login", "password", null // also you can add cookie );