Rss: Difference between revisions

From wikinotes
Line 18: Line 18:
domain.com/feed.xml
domain.com/feed.xml
domain.com/atom.xml
domain.com/atom.xml
</syntaxhighlight>


# misc other
Try view-source on the page, and search <code>rss</code>,<br>
domain.com/updates.xml
looking for a line like the following.<br>
domain.com/all.atom.xml
This is a RSS feed.
domain.com/rss.xml
<syntaxhighlight lang="html5">
domain.com/news.rss
<link rel="alternate" type="application/rss+xml" href="https://domain.com/index.xml" title="foo bar baz">
domain.com/index.xml
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Common Feed Links -->
</blockquote><!-- Common Feed Links -->

Revision as of 16:44, 11 October 2021

Really Simple Syndication (RSS) is used to broadcast changes to a website.
RSS aggregators collect these feeds, and notify you so you do not need to
continuously visit a website to see if there are changes.

RSS Readers

You consume RSS feeds with RSS readers.
See programs: news readers.

RSS Feeds services

Common Feed Links

# very common
domain.com/feed.xml
domain.com/atom.xml

Try view-source on the page, and search rss,
looking for a line like the following.
This is a RSS feed.

<link rel="alternate" type="application/rss+xml" href="https://domain.com/index.xml" title="foo bar baz">

YouTube

https://www.youtube.com/feeds/videos.xml?channel_id=${CHANNEL_ID}    # youtube channel
https://www.youtube.com/feeds/videos.xml?playlist_id=${PLAYLIST_ID}  # youtube playlist

Extract rss feed from youtube channel homepage: https://gist.github.com/tjluoma/fdbc63ceb78a2aecd3d638fd18b6ec6e