Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function getData(){
  2.   try{
  3.     var values = SpreadsheetApp.openById('ХХХ').getSheetByName('YYY').getDataRange().getValues();
  4.     return values;
  5.   }catch(e){
  6.     return [[e.message], ['U SENT ' + JSON.stringify(parameters)]];
  7.   }
  8. }
  9. function doGet(e){
  10.   var cs = ContentService.createTextOutput();
  11.   cs.setMimeType(ContentService.MimeType.JSON);
  12.   cs.setContent(JSON.stringify(getData()));
  13.   return cs;
  14. }