RSS Feed Sources
YouTube Channel Videos
Section titled YouTube Channel VideosGeneral
Section titled GeneralThis comment, the manually portion: How to find channel RSS feed on YouTube? - Web Applications Stack Exchange
- Open the desired YouTube channel page.
- Open the view-source of that page (one of the following):
- Ctrl+U.
- Right click —> View page source.
- Add view-source: to the beginning of the url in the address bar.
- Search for the term externalId
- Right after it, there will be a random code (the channel id) in the form of:
UCoookXUzPciGrEZEXmh4Jjg
- Add the code you found as a suffix to https://www.youtube.com/feeds/videos.xml?channel_id= and now that’s your RSS feed for that channel.
NOTE: The selection after the Ctrl+F might be a little rough (slow, as the page source is large). You can select a large range including the selected Ctrl+F to fish out the channel id manually. Alternatively, paste the source into a code editor or write a script to extract it.
Exclude YouTube shorts
Section titled Exclude YouTube shortsTo only subscribe to a channel’s videos, follow the steps above, but replace the channel_id=UC
in the feed URL with playlist_id=UULF
. Source.
https://www.youtube.com/feeds/videos.xml?channel_id=UC-bAyLcSDpV4vS0AbxxknTwhttps://www.youtube.com/feeds/videos.xml?playlist_id=UULF-bAyLcSDpV4vS0AbxxknTw
GitHub Repo Releases
Section titled GitHub Repo Releases- How to get notified on Gradle releases? · Issue #3319 · gradle/gradle · GitHub
- @TheSnoozer: “I’m currently using github’s integrated features for this. Subscribe to the releases as RSS via: https://github.com/gradle/gradle/releases.atom”