How to read all shared google reader feeds by code?

橙三吉。 提交于 2019-12-03 20:26:10

You can use the RSSToolkit to read the shared feeds

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");

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

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!