我需要来自imdb unoffical api“omdbapi”的信息。我正在发送正确的链接但是当我得到响应时文档为null。我正在使用htmlagiltypack。我做错了什么?
这里是直接链接: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);
答案 0 :(得分:1)
它不是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);