I want to read all items of a feed in C#. The solutions I've found are only for the latest items like just the last 10 days.
Anybody has a good solution fot this?
Thank you
|
|
I want to read all items of a feed in C#. The solutions I've found are only for the latest items like just the last 10 days. Anybody has a good solution fot this? Thank you
|
||
|
|
|
|
If you can tie into something like Google Reader, which archives old feed items (although I'm not sure it's a permanent archive or not), then perhaps you can accomplish this. |
||
|
|
|
Libraries for reading feeds typically read all the data in the feed, but feeds typically only contain recent data - you need a source of data that includes older items, not a better library for reading the data you have. Most entities publish feeds to allow people to track when new content is published, not to make all their data available in a more convenient machine readable format. For this purpose, publishing recent data only makes sense as it saves on bandwidth. |
||
|
|
|
|
Most RSS feeds are only written to deliver a relatively short period of time - 'all' items in a feed generally need you to have created your own archive over time. |
||
|
|
|
|
Extending thomas' answer, The two google-related archives of feed data you can find are the official one: Google AJAX Feed API http://code.google.com/apis/ajaxfeeds/ which will limit you to 250 items, and the unofficial one: Google Reader API http://www.niallkennedy.com/blog/2005/12/google-reader-api.html which will give you unlimited (i think) items but you will need to work around their authentication (something with cookies) and pray they don't change or drop the API (as it is undocumented). |
||
|
|
|
|
I tried Google Reader, but ther archive was incomplete. I know the people who run the blogs, so I just asked them for a export. |
||
|