For questions specific to the Captcha recognition service named "2Captcha". When using this tag also include the more generic [captcha] tag. Please also provide a tag for the language that you are coding in.
Questions tagged [2captcha]
107 questions
10
votes
1 answer
Submit a form using POST with g-recaptcha-response argument
I want to submit a form from following web page: http://www.hzzo-net.hr/statos_OIB.htm
First, I use 2captcha service to bypass recaptcha:
# parameters
api_key <- "c+++"
api_url <- "http://2captcha.com/in.php"
site_key <-…

Mislav
- 1,533
- 16
- 37
8
votes
1 answer
Using 2captcha with Python
I'm totally new with 2captchas and Python, so I'm trying to figure out how these two works. For now I'm working on a python script and running it on spyder to resolve images captcha. My code (using 2captcha API) returns html of the site in return…

hyeri
- 663
- 9
- 26
5
votes
2 answers
How to identify the 32 bit data-sitekey of ReCaptcha V2 to obtain a valid response programmatically using Selenium and Python Requests?
Pretty much new with captcha and Python requests. The captcha documentation says to copy the value of data-sitekey parameter.
Here was my attempt, using Selenium to open the url and using Python requests to get a response.
mainurl =…

undetected Selenium
- 183,867
- 41
- 278
- 352
4
votes
1 answer
Problem to call Hcaptcha callback function
I come to see you because I have been blocking for a week to send the hcaptcha response to Google.
To put it in context, I'm developing a web automation program in Python with Selenium at releases.footshop.com website.
The captcha is at the end of…

digibouu
- 41
- 1
- 3
4
votes
3 answers
How to submit google captcha without submit button?
I'm writing an automation script using python and selenium, but I'm having a problem with the last step as the previous steps had submit button under captcha so the form was submitted. I was thinking about pay loading directly captcha response to…

Lucjan Grzesik
- 739
- 5
- 17
4
votes
1 answer
How to manually call (find) the ReCaptcha Callback function?
I'm currently experimenting with captcha solving, and have decided to use the popular 2captcha service to do so. Their approach is to send them the recaptcha values (google recaptcha key & site thread), then they solve it and send me back the…

PloxCake
- 73
- 1
- 5
3
votes
1 answer
how can someone solve cloudflare turnstile captcha using python selenium wihtn 2captcha api
I am trying to colve cloudflare turnstile captcha which is on website https://visa.vfsglobal.com/ind/en/pol/login
using python selenium with 2captcha api.
i have used same method the 2captcha showed on their website but i am wondering why its not…

george bell
- 59
- 2
3
votes
3 answers
Solving a Recaptcha V2 with a callback function using the 2captcha service and Python Selenium/Scrapy
I have a website I want to crawl. To access the search results, you must first solve a Recaptcha V2 with a callback function (see screenshot below)
Recaptcha V2 with a callback function
I am using a dedicated captcha solver called 2captcha. The…

oelmaria
- 51
- 7
3
votes
0 answers
Does hcaptcha have a data callback to submit solution?
I'm using the anti-captcha API to bypass hcaptcha on a few websites. I'm getting the solution (response token) from anti-captcha, then I place it on the hcaptcha textarea. There is no submit button on this hcaptcha, so I need to find a data callback…

hellomynameis
- 31
- 1
3
votes
1 answer
Submitting hcaptcha captcha token to Discord to create an account using selenium
I am using python selenium to create a Discord account (https://discord.com/register), but it is protected with a hcaptcha. I have a captcha API (2captcha/capmonster) to return a captcha token and putting it into the g-captcha-response textarea.…

Exodus
- 53
- 2
- 6
3
votes
3 answers
2Captcha + python + selenium ERROR_ZERO_CAPTCHA_FILESIZE
I'm trying to upload an image captcha to 2captcha API but I'm receiving the error ERROR_ZERO_CAPTCHA_FILESIZE but my file size on my directory is above 60KB why am I still receiving this error?
Am I missing something?
I've tried sending the only…

Ashfaque Marfani
- 345
- 4
- 22
3
votes
1 answer
Hcaptcha + 2captcha/anticaptcha in Python Selenium Chromedriver
I am trying to bypass hcaptcha on cloudflare anti-ddos loading page using webdriver in python selenium. Basically i have got to the point when the token is put in h-captcha-response and g-recaptcha-response fields and i can submit hcaptcha form. The…

hen
- 65
- 1
- 7
3
votes
1 answer
Java Selenium + 2Captcha + Submit Form
Hello i am trying to automate some process here . i am using 2captch to solve captcha , please check out image .
I have got site_key and api_key , now i am sending api_key + site_key and it is returning me response_token, i have added returned…

Joy
- 145
- 2
- 9
3
votes
0 answers
Recaptcha Solving With Python In Selenium Chrome Session (2Captcha)
I want to resolve ReCaptcha on websites via Python with the Selenium module.
My question is: How can I send a 2Captcha request from within the Selenium Chrome Browser, that resolves the ReCaptcha and validates the successful outcome within the…

Romano
- 619
- 6
- 12
2
votes
0 answers
Solving ERROR_CAPTCHA_UNSOLVABLE while using 2captcha API with Selenium for a Google reCAPTCHA: What am I doing wrong?
I am getting the error ERROR_CAPTCHA_UNSOLVABLE while using the 2captcha API service to solve a google recaptcha.
When I manually solve this captcha I have to click the check box and then select the images and then click on verify button. Here is…

Risen_Star
- 53
- 3