rss - StackOverflow RSS Feed 仅返回 30 个项目

标签 rss syndication-feed

我使用此代码从 stackoverflow.com 获取 RSS

SyndicationFeed feed = SyndicationFeed.Load(XmlReader.Create("http://stackoverflow.com/feeds"));
        foreach (SyndicationItem item in feed.Items)
        {
            Console.WriteLine(item.Title.Text);
            Console.WriteLine(item.Title.Type);
            Console.WriteLine(feed.Items.Count());
            Debug.Print(item.Title.Text);

        }

我只收到了 30 条内容,但当我在 Google 阅读器中查看时,我收到的内容不止这个数量。

这里有限制吗?

最佳答案

30 是 stackoverflow 返回的值,它不是 SyndicateFeed 类的限制。

关于rss - StackOverflow RSS Feed 仅返回 30 个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16068757/

相关文章:

apache - Cakephp RSS - 内存耗尽导致网站空白页

iphone - TableView 中的 UIImageView 和 UItextView

c# - 解析 RSS 提要最近引发文档类型定义 (DTD) 错误

android - 如何检索 RSS 提要?

video - 使用Simplepie从YouTube feed获得视频观看

c# - 如何向 SyndicateFeed 对象的序列化输出添加换行符?

.net - 将命名空间添加到 SyndicationFeed 而不是单个元素?

Android rss库

asp.net - SyndicationFeed : Content as CDATA?