如何通过代码阅读所有共享的谷歌阅读器提要?

发布于 2024-07-14 10:59:50 字数 102 浏览 6 评论 0原文

我在我的谷歌阅读器上分享了很多提要,我想要一些使用 asp.net 的代码来读取所有这些提要并放入页面中,可能需要分页,因为提要太多。 有人知道该怎么做吗?或者是否有一个工具可以做到这一点

I share a lot of feeds on my google reader, i want some code using asp.net to read all these feeds and put in a page, may be with paging because feeds are too much.
Any one know how to do so?, or if there is a tool for that

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

祁梦 2024-07-21 10:59:50

您可以使用 RSSToolkit 阅读共享源

You can use the RSSToolkit to read the shared feeds

全部不再 2024-07-21 10:59:50

您可以在此处找到适合您的 Atom feed:
http://www.google.com/reader/atom/

您可以找到更多具体网址,如果您登录 Google Reader 并单击浏览器顶部的 RSS 按钮。

然后你只需要一些东西来阅读你的提要。
这是用于此目的的第三方库。
http://atomnet.sourceforge.net/

使用起来非常简单

//Reads everything in the Atom document.
AtomFeed feed = AtomFeed.Load(new Uri("http://www.yourfeed.com/atom.xml");

You can find a Atom feed for you feeds here:
http://www.google.com/reader/atom/

You can find a more specific url, if you login into Google Reader and click the RSS button, in the top of your browser.

Then you just need something to read your feeds.
Here's a third party library for that purpose.
http://atomnet.sourceforge.net/

It's very simple to use

//Reads everything in the Atom document.
AtomFeed feed = AtomFeed.Load(new Uri("http://www.yourfeed.com/atom.xml");
秉烛思 2024-07-21 10:59:50

我认为 Google reader 目前还没有官方 API。 但为您找到了这个。 这也有共享项目。 查看。

更新:Google 阅读器有一个 API

I think Google reader does not have an official API as of now. But found this one for you. This also has shared items. check out.

Update: Google reader has an API

半步萧音过轻尘 2024-07-21 10:59:50

我也找到了这个,看起来不错:
http://www.codeproject.com/KB/cs/rssframework.aspx

I found this one as well and it seams nice:
http://www.codeproject.com/KB/cs/rssframework.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文