我正在尝试运行此代码:
public string FeedReadersCount(string id)
{
XDocument xdoc = XDocument.Load("http://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=" + id);
return (from item in xdoc.Descendants("entry")
select item.Attribute("circulation").Value).SingleOrDefault();
}
但它返回 404 错误。有人知道另一种方法吗?