我想解析验证码,所以我使用 2 验证码服务,但我不了解多部分发布请求。
多部分示例:
<form method="post" action="http://2captcha.com/in.php" enctype="multipart/form-data">
<input type="hidden" name="method" value="post">
Your key:
<input type="text" name="key" value="YOUR_APIKEY">
The CAPTCHA file:
<input type="file" name="file">
<input type="submit" value="download and get the ID">
</form>
这只是 post 请求的示意图。您的帖子数据将如下所示: method=post&key=your_apikey&file=...
我建议看一下base64示例,然后将验证码图像作为byte []
并使用类似Convert.ToBase64 (...)
的内容将其转换为base64。
您可以使用网络客户端提交帖子请求。