Skip to content

Instantly share code, notes, and snippets.

View szfkamil's full-sized avatar

Kamil szfkamil

  • Poland
  • 00:22 (UTC +02:00)
View GitHub Profile
@arieljannai
arieljannai / get_youtube_channel_rss_feed.js
Last active July 5, 2024 08:26
Get YouTube Channel RSS Feed
for (var arrScripts = document.getElementsByTagName('script'), i = 0; i < arrScripts.length; i++) {
if (arrScripts[i].textContent.indexOf('externalId') != -1) {
var channelId = arrScripts[i].textContent.match(/\"externalId\"\s*\:\s*\"(.*?)\"/)[1];
var channelRss = 'https://www.youtube.com/feeds/videos.xml?channel_id=' + channelId;
var channelTitle = document.title.match(/\(?\d*\)?\s?(.*?)\s\-\sYouTube/)[1];
console.log('The rss feed of the channel \'' + channelTitle + '\' is:\n' + channelRss);
break;
}
}