RSS Feed: Difference between revisions
No edit summary |
|||
(15 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
RSS | RSS Feeds are way of publishing lists on the web, such as the latest posts to a blog, or audio files of a podcast. RSS originally meant RDF Site Summary, and was popularized by Dave Winer and the blogging communtiy as Really Simple Syndication, is now said to stand for [[wikipedia:RSS|Rich Site Summary]]. RSS is designed to make it easy for software, like a "pod catcher" or a feed reader to automatically collect and download information from websites that a user has "subscribed" to. Feeds can be useful to write scripts that use public websites as services to request, for instance, the latest images added to Flickr with a given tag, or to search a set of news sites for their last headlines. | ||
Some examples of public feeds | Some examples of public feeds | ||
Line 6: | Line 6: | ||
* [http://archive.org/help/rss.php Internet Archive] | * [http://archive.org/help/rss.php Internet Archive] | ||
* [http://www.youtube.com/t/rss_feeds YouTube] | * [http://www.youtube.com/t/rss_feeds YouTube] | ||
* [https://developer.vimeo.com/apis/simple#response-formats Vimeo ("simple api")] | * [https://developer.vimeo.com/apis/simple#response-formats Vimeo ("simple api")] ... is a search feed advanced only? | ||
* [http://openclipart.org/docs/api Open Clip Art] [http://openclipart.org/media/feed/rss/woman "woman"] [http://openclipart.org/media/feed/rss/man "man"] | |||
* [http://4chanarchive.org/brchive/feeds.php 4chan] | |||
* A custom [http://jamiedubs.com/rss-feed-of-your-tumblr-dashboard Tumblr] feed creator (tumblr itself doesn't offer rss feeds) | * A custom [http://jamiedubs.com/rss-feed-of-your-tumblr-dashboard Tumblr] feed creator (tumblr itself doesn't offer rss feeds) | ||
* [http:// | * uncovering a [http://ahrengot.com/tutorials/facebook-rss-feed/ Facebook] feed | ||
* getting at a [http://thenextweb.com/twitter/2011/06/23/how-to-find-the-rss-feed-for-any-twitter-user/ Twitter] rss feed | |||
== | === Finding feeds embedded in an HTML page === | ||
== | |||
http:// | If you view the "[http://en.wikipedia.org/wiki/Special:RecentChanges Recent Changes]" page of Wikipedia, and view the source you will find something like the following: | ||
<source lang="html4strict"> | |||
<link rel="alternate" type="application/atom+xml" title=""Special:RecentChanges" Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" /> | |||
</source> | |||
Similarly, viewing the source of an Article's change [http://en.wikipedia.org/w/index.php?title=Software_development_process&action=history history] reveals a [http://en.wikipedia.org/w/index.php?title=Software_development_process&feed=atom&action=history feed]. | |||
== Examples == | |||
[[Die Zeit]] | |||
[[Category:RSS]] | |||
Latest revision as of 09:48, 8 October 2012
RSS Feeds are way of publishing lists on the web, such as the latest posts to a blog, or audio files of a podcast. RSS originally meant RDF Site Summary, and was popularized by Dave Winer and the blogging communtiy as Really Simple Syndication, is now said to stand for Rich Site Summary. RSS is designed to make it easy for software, like a "pod catcher" or a feed reader to automatically collect and download information from websites that a user has "subscribed" to. Feeds can be useful to write scripts that use public websites as services to request, for instance, the latest images added to Flickr with a given tag, or to search a set of news sites for their last headlines.
Some examples of public feeds
- Flickr json api key? "woman" "man"
- BBC News "education & family" "business"
- Internet Archive
- YouTube
- Vimeo ("simple api") ... is a search feed advanced only?
- Open Clip Art "woman" "man"
- 4chan
- A custom Tumblr feed creator (tumblr itself doesn't offer rss feeds)
- uncovering a Facebook feed
- getting at a Twitter rss feed
Finding feeds embedded in an HTML page
If you view the "Recent Changes" page of Wikipedia, and view the source you will find something like the following:
<link rel="alternate" type="application/atom+xml" title=""Special:RecentChanges" Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" />
Similarly, viewing the source of an Article's change history reveals a feed.