无法获得feedburner订户的数量

时间:2012-10-31 15:41:37

标签: c# c#-4.0 feedburner

我正在尝试运行此代码:

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错误。有人知道另一种方法吗?

1 个答案:

答案 0 :(得分:2)

截至2012年10月20日,Feedburner API已被弃用。我正试图找出另一种方法来获取订阅者数量。