清空 Xml 来自 Api 的文档回复
Empty Xml Document response from Api
我需要来自 imdb 非官方 api "omdbapi" 的信息。我发送 link 是正确的,但是当我收到回复时,文档是 null.I 我正在使用 htmlagiltypack.what 我做错了吗?
这里直接link:http://www.omdbapi.com/?i=tt2231253&plot=short&r=xml
string url = "http://www.omdbapi.com/?i=" + ImdbID + "&plot=short&r=xml";
HtmlWeb source = new HtmlWeb();
HtmlDocument document = source.Load(url);
它不是 Html,而是您期望的 XML 文档。试试这个:
string url = "http://www.omdbapi.com/?i=tt2231253&plot=short&r=xml";
WebClient wc = new WebClient();
XDocument doc = XDocument.Parse(wc.DownloadString(url));
Console.WriteLine(doc);
我需要来自 imdb 非官方 api "omdbapi" 的信息。我发送 link 是正确的,但是当我收到回复时,文档是 null.I 我正在使用 htmlagiltypack.what 我做错了吗?
这里直接link:http://www.omdbapi.com/?i=tt2231253&plot=short&r=xml
string url = "http://www.omdbapi.com/?i=" + ImdbID + "&plot=short&r=xml";
HtmlWeb source = new HtmlWeb();
HtmlDocument document = source.Load(url);
它不是 Html,而是您期望的 XML 文档。试试这个:
string url = "http://www.omdbapi.com/?i=tt2231253&plot=short&r=xml";
WebClient wc = new WebClient();
XDocument doc = XDocument.Parse(wc.DownloadString(url));
Console.WriteLine(doc);