Parse XML RSS Feeds with Google Scripts

This Google Script will fetch and parse any XML feed and inserts the items as rows in a Google Spreadsheet in reverse chronological order.

Internally, script uses the UrlFetchApp service of Apps Script to fetch the content of the raw XML feed and parses it using the built-in XMLService service. Since spreadsheet data can be externally published as CSV and other formats, this can be extended to convert your RSS feeds into other formats though Google Sheets.

function parseXML() {
  var url = 'http://feeds.labnol.org/labnol';
  fetchFeed(url);
}

function fetchFeed(url) {
  var ss = SpreadsheetApp.getActiveSheet();

  var property = PropertiesService.getDocumentProperties();
  var last_update = property.getProperty('last_update');
  last_update = last_update === null ? 0 : parseFloat(last_update);

  var feed = UrlFetchApp.fetch(url).getContentText();
  var items = getItems(feed);
  var i = items.length - 1;
  while (i > -1) {
    var item = items[i--];
    var date = new Date(item.getChildText('pubDate'));
    if (date.getTime() > last_update) {
      insertRow(item, sheet);
    }
  }
  property.setProperty('last_update', date.getTime());
}

function getItems(feed) {
  var doc = XmlService.parse(feed);
  var root = doc.getRootElement();
  var channel = root.getChild('channel');
  var items = channel.getChildren('item');
  return items;
}

function insertRow(item, sheet) {
  var title = item.getChildText('title');
  var url = item.getChildText('link');
  var author = item.getChildText('author');
  var date = new Date(item.getChildText('pubDate'));
  sheet.insertRowBefore(2);
  sheet.getRange('B2:E2').setValues([[title, url, author, date.toLocaleString()]]);
}
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.