如何从URL下载CSV并将其保存到云端硬盘

时间:2019-04-18 19:23:35

标签: google-apps-script

我想从URL端点下载CSV文件并将其保存到Google云端硬盘。

以下是我尝试过的内容。它可以运行,但是没有文件保存到该文件夹​​。

function myFunction() {
  getFile("https://app.mopub.com/reports/custom/export/");
}

function getFile(fileURL) {
  // see https://developers.google.com/apps-script/class_urlfetchapp
  var response = UrlFetchApp.fetch(fileURL);
  var fileBlob = response.getBlob()
  var folder = DriveApp.getFoldersByName('StackOverflow');
  var result = folder.createFile(fileBlob);
  debugger;  // Stop to observe if in debugger
}

0 个答案:

没有答案