vote up 0 vote down star

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#.

flag

67% accept rate

2 Answers

vote up 5 vote down check

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|flag
I think you mean "application/rss+xml" and "application/atom+xml". – Matthew Wilson Oct 4 at 7:44
Thanks , fixed. – configurator Oct 8 at 0:11
vote up 0 vote down

No I am not able to get it. Say I Have www.directsaurabh.blog.com a new blog so how can i finf its feed url?

link|flag

Your Answer

Get an OpenID
or

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