The quest is, given a site url (say http://stackoverflow.com/ ) to return the list of all the feeds available on the site. Methods acceptable:

a) use a 3rd party service (google?, yahoo?, ...) programmatically b) using a crawler/spider (and some tips on how to configure the spider to return the rss/xml feeds only) c) programmatically using c/c++/php (any language/library)

The task here is not to get the feeds contained on the page returned by the url but ALL the feeds that are available on the server at any depth... in any cases please provide a simple usage example.

link|improve this question

25% accept rate
1  
This may be a duplicate of How to discover RSS feeds for a given URL question stackoverflow.com/questions/61535/… with this as the answer, for finding all the RSS feeds in a variety of ways, using PHP programatically, 3rd party service etc stackoverflow.com/questions/61535/… – Feral Oink Jul 12 '11 at 19:08
feedback

1 Answer

The only way I know of doing this is to depend on the RSS discovery protocol, which has beben around for about 4 years. Crawl the site, and look in the HTML pages for the RSS auto-discovery tags:

<link rel="alternate" type="application/rss+xml" 
      title="Something" 
      href="http://www.example.com/feed1.xml” />
link|improve this answer
This is correct but the task here is the crawling itself. – ktolis May 4 '10 at 23:10
It's the same idea, only, look for anchor tags. Request the home page, store any RSS tags, then look for anchor tags, request those pages, repeat. – Cheeso May 5 '10 at 0:48
feedback

Your Answer

 
or
required, but never shown

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