Namokonov

gas_get_csv_report

Sep 12th, 2021
941
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function getCsvRepost(cookies) {
  2.   opt = {
  3.     "method": "GET",
  4.     "headers": {
  5.       "Cookie": cookies
  6.     }
  7.   };
  8.   const url = "https://doggylogs.com/report/walks";
  9.   response = UrlFetchApp.fetch(url, opt);
  10.   var csvContent = parseCsvResponse(response.getContentText());
  11.   Logger.log(csvContent);
  12.   return csvContent;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment