Integrating C# with 2Captcha

ProductionsDream

Regular Member
Joined
Nov 28, 2013
Messages
406
Reaction score
198
Hello all,

To the mods: if this is not the correct area to post this question, feel free to change it :)

I was wondering if anyone has any experience with integrating C# with 2captcha API with proxies.

I plan to automate the expired tumblr method to create links to my money site.

But need to solve captchas to complete the process.

Has anyone used 2captcha with c#, or anyother programming language?

Thanks in advance.
 
Here's how I did it with Go. Since it's Tumblr I'm assuming you're using the sitekey method. They don't document it very well, but this code should work.

https://pastebin.com/s8iWenKD

thanks for the answer,

Just one question if i may:

did you use proxies ? What provider did you use?

I was planning to use stormproxies rotating dedicated proxies with their testing packages, which only provides one acess ip.

But i read on the 2Catpcha site this:

"If your proxy uses IP authentication you have to add our IP addresses to the list of allowed IPs of the proxy:"

if i only have one acess ip, i cannot had another one the their list of allowed proxies.

Do you mind sharing your proxy provider, if you have used it.

Thanks
 
thanks for the answer,

Just one question if i may:

did you use proxies ? What provider did you use?

I was planning to use stormproxies rotating dedicated proxies with their testing packages, which only provides one acess ip.

But i read on the 2Catpcha site this:

"If your proxy uses IP authentication you have to add our IP addresses to the list of allowed IPs of the proxy:"

if i only have one acess ip, i cannot had another one the their list of allowed proxies.

Do you mind sharing your proxy provider, if you have used it.

Thanks

I actually used Stormproxies, but I set up haproxy to forward proxy traffic from my servers IP to Stormproxies, and then granted 2captcha access to the proxy set up on my server.
 
I actually used Stormproxies, but I set up haproxy to forward proxy traffic from my servers IP to Stormproxies, and then granted 2captcha access to the proxy set up on my server.
Ok thanks for the answer.

You said you applied this to use Recaptcha. You used GO Language, did you used any automation framework.

Im asking this because Selenium is triggering the "you are not human" behavior of Google Recaptcha. When i try to select an image that image just fades and keeps looping this behavior to infinity. And in the audio chalenge it trigger the anti spam message.

upload_2018-12-4_14-36-37.png


In conclusion, it seems that selenium is not the framework to automate sites with google recaptcha.

Im looking other solutions. :)
 
Ok thanks for the answer.

You said you applied this to use Recaptcha. You used GO Language, did you used any automation framework.

Im asking this because Selenium is triggering the "you are not human" behavior of Google Recaptcha. When i try to select an image that image just fades and keeps looping this behavior to infinity. And in the audio chalenge it trigger the anti spam message.

View attachment 110193

In conclusion, it seems that selenium is not the framework to automate sites with google recaptcha.

Im looking other solutions. :)

Everything in that project was done using basic HTTP requests, no browser automation.
 
Back
Top