Hi at all.
When I send special characters (like à è ì ò ù) with dopost at Gsheet, the charatcers not show.
How i solve this problem?
Use the UriEncode block on your values


function doPost(e) {
  var ss = SpreadsheetApp.getActive();
  var sh = ss.getSheetByName('Sheet1');
  var data = e.parameter.name;
  sh.appendRow([data]);
  
  return ContentService.createTextOutput(data + " saved to sheet");
  
}

              
              
              2 Likes
            
            This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
