如果您可以使用 DNF45,那么 MultipartFormDataContent 将为您完成大部分繁重的工作。以下示例将模仿表单帖子的照片上传到 picpaste。然后它使用 HtmlAgility 来区分响应,这比您要求的要远得多,但是当您必须像使用 Web 服务一样使用交互式网页时,这是一件很方便的事情。
显然,您必须更改文件名以指向您自己计算机上的图片。这不应该是生产级的,只是我在弄清楚如何操作 picpaste,因为我太便宜了,无法支付 imgur 的费用。
using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Net.Mime;
namespace picpaste1
{
class Program
{
static void Main(string[] args)
{
var fi = new FileInfo(@"path\to\picture.png");
using (var client = new HttpClient())
using (var mfdc = new MultipartFormDataContent())
using (var filestream = fi.OpenRead())
using (var filecontent = new StreamContent(filestream))
{
filecontent.Headers.ContentDisposition =
new ContentDispositionHeaderValue(DispositionTypeNames.Attachment)
{
FileName = fi.Name,
Name = "upload"
};
filecontent.Headers.ContentType = new MediaTypeHeaderValue("image/png");
mfdc.Add(new StringContent("7168000"), "MAX_FILE_SIZE");
mfdc.Add(filecontent);
mfdc.Add(new StringContent("9"), "storetime");
mfdc.Add(new StringContent("no"), "addprivacy");
mfdc.Add(new StringContent("yes"), "rules");
var uri = "http://picpaste.com/upload.php";
var res = client.PostAsync(uri, mfdc).Result;
var doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(res.Content.ReadAsStringAsync().Result);
uri = doc.DocumentNode.SelectNodes("//td/a").First()
.GetAttributeValue("href","NOT FOUND");
res = client.GetAsync(uri).Result;
doc.LoadHtml(res.Content.ReadAsStringAsync().Result);
var foo = doc.DocumentNode.SelectNodes("//div[@class='picture']/a").First()
.GetAttributeValue("href","NOT FOUND");
Console.WriteLine("http://picpaste.com{0}", foo);
Console.ReadLine();
}
}
}
}
如果响应是 JSON 而不是 HTML,这很可能用于 Web 服务,请使用 Newtonsoft.Json 解析器。整个网络都有教程。它全面且速度非常快,是我的首选武器。从广义上讲,您创建类来对您期望在 JSON 中的对象图进行建模,然后使用它们来键入通用方法调用。
using Newtonsoft.Json;
var res = client.PostAsync(uri, mfdc).Result;
Foo foo = JsonConvert.DeserializeObject<Foo>(res.Content.ReadAsStringAsync().Result);
您可以从 NuGet 获得 HtmlAgility 和 Newtonsoft.Json。