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

Amit Agarwal

Google Developer Expert, Google Cloud Champion

Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.

Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory

0

Awards & Titles

Digital Inspiration has won several awards since it's launch in 2004.

Google Developer Expert

Google Developer Expert

Google awarded us the Google Developer Expert award recogizing our work in Google Workspace.

ProductHunt Golden Kitty

ProductHunt Golden Kitty

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

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional (MVP) title for 5 years in a row.

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator title recognizing our technical skill and expertise.

Email Newsletter

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

We will never send any spam emails. Promise.