2captcha-csharp
2captcha-csharp copied to clipboard
Turnstile Captcha is not working.
trafficstars
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
captcha.SetData(_cData);
captcha.SetPageData(_chlPageData);
captcha.SetAction(_action);
captcha.SetSiteKey(_siteKey);
captcha.SetUrl(_url.ToString());
await _solver.Solve(captcha).ConfigureAwait(false);
return captcha.Code;
}
All values are being populated and are not null before calling Solve Method
Thank you