0

我正在尝试运行此代码:

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

4

1 回答 1

2

自 2012 年 10 月 20 日起,Feedburner API 已被弃用。我正在尝试找出另一种获取订阅者数量的方法。

于 2012-11-02T18:53:43.027 回答