2captcha-csharp icon indicating copy to clipboard operation
2captcha-csharp copied to clipboard

C# library for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.

Results 8 2captcha-csharp issues
Sort by recently updated
recently updated
newest added
trafficstars

I am trying to integrate 2Captcha service in my .Net6 Application. I have installed this nuget package: https://www.nuget.org/packages/2captcha-csharp/ I added the namespace: using TwoCaptcha.Captcha; But I am not able to...

Please help me resolve it! I tested recaptcha v2 in https://google.com/recaptcha/api2/demo and I worked. But when I try in this url: https://bds68.com.vn/dang-ky. I got the code from 2captcha then I...

- new Captcha SDK added - add method MTCaptcha - add method Cutcaptcha - add method CyberSiARA - add method DataDome - add method atbCAPTCHA - add method Tencent

Changed main library .net version into a single .netstandard2.0 to support all range of frameworks from modern to .net472. All tests pass.

I am getting System.ArgumentNullException: Value cannot be null. (Parameter 'content') According to the documentation, I need to set action, data, and pagedata. Code Spinnet: public async Task SolveAsync() { var...

```csharp public async Task SolveCaptcha() { TwoCaptcha.TwoCaptcha solver = new TwoCaptcha.TwoCaptcha("-TOKEN-"); FunCaptcha captcha = new FunCaptcha(); captcha.SetSiteKey("DF9C4D87-CB7B-4062-9FEB-BADB6ADA61E6"); captcha.SetUrl("https://demo.arkoselabs.com/?key=DF9C4D87-CB7B-4062-9FEB-BADB6ADA61E6"); try { solver.Solve(captcha); await solver.WaitForResult(captcha, new Dictionary()); } catch (AggregateException ex) {...

Add support for JSON response format