Whats an easy way to get the contents of a Google Spreadsheet as JSON using Google Apps Script?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

In the Google Spreadsheet go to Tools > Scripts > Script Editor

Insert this code and hit the play button

function getValues() {
  var range = SpreadsheetApp.getActiveSheet().getDataRange();
  var json = Utilities.jsonStringify(range.getValues())
  Browser.msgBox(json);
}​
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.