带有 Base64 的 C# 2验证码图像发布



C# 2验证码图片帖子

HttpClient client = new HttpClient();
var bytes = File.ReadAllBytes("sample.jpg");
var base64 =   Convert.ToBase64String(bytes);
var secretKey = "8ffa...";
var url = "https://2captcha.com/in.php?key=" + secretKey;
using ( client = new HttpClient())
{
var content = new StringContent(base64);
var response = await client.PostAsync(url , content);
var stringResponse = await response.Content.ReadAsStringAsync();
Console.WriteLine(stringResponse);
Console.ReadLine();

我的每一个反应都是ERROR_ZERO_CAPTCHA_FILESIZE,我不知道有什么问题。

>ERROR_ZERO_CAPTCHA_FILESIZE表示图像大小小于 100 字节(不是千字节(。您需要彻底检查是否正确发送图像。 下面是正确的 Base64 示例表单的示例:

<form method="post" action="https://2captcha.com/in.php">
<input type="hidden" name="method" value="base64">
<input type="text" name="key" value="YOUR_APIKEY">
<textarea name="body">BASE64_FILE</textarea>
<input type="submit" value="Upload and get the ID">
</form>

也许问题出在您的示例.jpg文件中。尝试将真实的验证码图片编码为 base64(您实际上可以在 2captcha 登录页面上拍摄一张(。 base64 文本字符串必须具有图像文件的权重,因此必须至少为几千字节。

相关内容

  • 没有找到相关文章

最新更新