up vote 0 down vote favorite
share [g+] share [fb]

Given a blog URL, obtain its RSS feed URL. I know this question was asked here, but I'm looking for a framework independent algorithm, however I'd prefer code in C#.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Look for a

<link rel="alternate" type="..." href="..." />

tag in the page from the given URL.

The type will be application/atom+xml for Atom, application/rss+xml for RSS. The href will be the URL for the feed.

link|improve this answer
I think you mean "application/rss+xml" and "application/atom+xml". – Matthew Wilson Oct 4 '09 at 7:44
Thanks , fixed. – configurator Oct 8 '09 at 0:11
feedback

Your Answer

 
or
required, but never shown

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