8:07 PM RSS feed: what is it and how to use it? |
RSS stands for Rich site summary or mostly known as really simple syndication. It shows a summary of your website. It is used to publish frequently updated information on your website for example blogs, articles etc. It uses a standard web feed format to read from a website and post to another place.
There are so many RSS feed urls. To see Yahoo sports the feed URL is:
When you subscribe to website or blogs using an RSS feed you don't need to manually check that site very often. Whenever an update is done or new article is posted, you can see in the RSS of your browser.
We will see an example of how to create RSS xml file for a blog or a portion of website.
Below is the xml file for the rss feed for blogs at my website. To subscribe you can use this feed
RSS feeds are mostly xml files. Below is one sample of an RSS
version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>My Latest Blogs</title>
<description>A short description for your blog</description>
<link>http://www.shankysportal.com/blog</link>
<item>
<title>Article 1</title>
<description>A short description for article 1</description>
<link>www.shankysportal.com/blog/some_unique_and_special_commands_in_linux/2014-02-19-37</link>
<guid>a string for each item</guid>
<pubDate>Mon, 28 Feb 2014 16:20:00 GMT </pubDate>
</item>
<item>
2nd item </item> </channel> </rss> 2. Save the rss as anything.xml and upload on your website. That's it. Your RSS feed URL is ready. 3. Now you can use that url like www.yoursite.com/rss.xml as rss feed |
|
Related blogs
You may also like to see:
[2014-01-29] | [Technical Solution] |
How to create my own website for free? |
[2014-02-02] | [Technical Solution] |
Difference between an Application server and web server |
[2014-12-28] | [Technical Solution] |
How to schedule a mail in outlook to be sent later? |
[2014-02-05] | [Technical Solution] |
How do we use FTP from command line to send and receive files |
[2015-12-30] | [Technical Solution] |
SOLVED : Big problem of windows 10, internet speed reduces greatly. Turn off Windows update. |
Total comments: 0 | |