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
+3
A:
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");
Eibx
2009-03-12 12:13:48
Where is the 3rd part library?
David Basarab
2009-03-12 12:22:27
Added now, forgot it.
Eibx
2009-03-12 12:22:58
A:
I found this one as well and it seams nice: http://www.codeproject.com/KB/cs/rssframework.aspx
Amr ElGarhy
2009-03-17 13:27:37