vote up 2 vote down star
2

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

flag

You want to aggregate all your RSS feeds into one huge RSS feed? – Adrian Archer Mar 11 at 18:18
just want to get the marked as shared feeds to put in a page, to make paging in the feeds and show in different ways, i put it as iframe in my site igurr.com/content/IGurrShare.aspx but i want to read it by code to show as i want not inside iframe – Amr ElGarhy Mar 11 at 18:26

4 Answers

vote up 2 vote down check

You can use the RSSToolkit to read the shared feeds

link|flag
vote up 2 vote down

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");
link|flag
Where is the 3rd part library? – David Basarab Mar 12 at 12:22
Added now, forgot it. – Eibx Mar 12 at 12:22
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.