Create RSS Feed for YouTube Search Results

Based upon the Twitter RSS Feed, a Maryland based Rails developers has created a Google Script that creates a RSS feed of YouTube videos matching your search terms. You pass the search phrase as a parameter to the Google Script web app and it uses the ContentService to serve the results as an RSS feed.

Before authorizing the code, go to the Google Developers console and enable the YouTube Data API for your Apps Script project. You may also be required to create credentials before using the YouTube API in Apps Script. Publish the script as web app and set access to anyone, even anonymous.

/*
  YouTube RSS Feeds
  Written by @user1535152 http://stackoverflow.com/q/30486682/512127
  Based on http://www.labnol.org/internet/twitter-rss-feed/28149/
*/

function doGet(e) {
  var title = 'Youtube RSS Feed for ' + e.parameter.search,
    timez = Session.getScriptTimeZone(),
    search = encodeURIComponent(e.parameter.search),
    link = 'https://www.youtube.com/results?search_query=' + search,
    self = ScriptApp.getService().getUrl() + '?' + search;

  var rss = '';
  rss += '';
  rss += '' + title + '';
  rss += '' + link + '';
  rss += '';
  rss += '' + title + ' updated on ' + new Date() + '.';

  var results = YouTube.Search.list('id, snippet', {
    q: search,
    maxResults: 50,
    order: 'date',
  });

  for (var i = 0; i < results.items.length; i++) {
    var item = results.items[i];
    rss += '';
    rss += '' + item.snippet.title + '';
    rss += 'http://www.youtube.com/watch?v=' + item.id.videoId + '';
    rss += '' + item.snippet.description + '';
    rss += '' + Utilities.formatDate(new Date(item.snippet.publishedAt), timez, 'EEE, dd MMM yyyy HH:mm:ss Z') + '';
    rss += 'http://www.youtube.com/watch?v=' + item.id.videoId + '';
    rss += '';
  }

  rss += '';

  return ContentService.createTextOutput(rss).setMimeType(ContentService.MimeType.RSS);
}

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻