Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find RSS feed of a particular website?

Tags:

rss

How to find RSS feed of a particular website? Whether there is any particular way to find it?

like image 502
Shan Avatar asked Jun 13 '11 06:06

Shan


People also ask

How do I find the RSS feed for a site?

Right click an empty space on the website you'd like an RSS feed for, then click View Page Source (the exact wording may vary depending on your browser). If searching for rss doesn't work, try atom instead. Look for an RSS URL, as you can see above, then copy it into your feed reader.

Does every website have an RSS feed?

Every major CMS offers an RSS feed by default, meaning an RSS exists for such sites whether the site's creators realize that or not. In these cases, you can use a simple URL hack to find the RSS feed. Around 25 percent of sites are built using WordPress, for example.

How do I get an XML feed from a website?

xml, so in that case you'll need to loop through all tags containing href AND rss, then just parse url from href attribute. If you want to do this through browser, press CTRL+U to view source, then CTRL+F to open find window and then just type in rss. RSS Feed url should appear immediately.


1 Answers

You might be able to find it by looking at the source of the home page (or blog). Look for a line that looks like this:

<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="http://example.org/rss" /> 

The href value will be where the RSS is located.

like image 78
Francois Deschenes Avatar answered Oct 02 '22 15:10

Francois Deschenes