gpt4 book ai didi

google-apps-script - 使用 UrlFetch 时抛出 "Unexpected error"

转载 作者:行者123 更新时间:2023-12-04 08:26:19 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Unexpected error on UrlFetchApp.fetch in Google Apps Script using basic authentication

(4 个回答)


9 个月前关闭。




一段时间以来,我一直在使用 App Scripts 下载 CM360 报告并将其插入 Google 表格,但几天前我在运行代码时遇到以下错误:

Exception: Unexpected error: https://www.googleapis.com/dfareporting/v3.4/reports/xxx/files/xxx?alt=media (Code:23:56)


我正在运行的代码示例:
function runreport() {
var reportId = xxx;
var profileId = xxx;
var additionalParameters = {'synchronous': 'true'};

var ReportFile = DoubleClickCampaigns.Reports.Files.list(profileId,reportId);
var ReportFileID = (ReportFile.items[0].id);
var newReportFile = DoubleClickCampaigns.Files.get(reportId, ReportFileID);

if(newReportFile.urls) {var httpOptions = {'headers': {'Authorization':'Bearer ' + ScriptApp.getOAuthToken()}};
var csvContent = UrlFetchApp.fetch(newReportFile.urls.apiUrl, httpOptions).getContentText();
var csvData = Utilities.parseCsv(csvContent);}}
有没有其他人遇到过这个问题并设法解决了它?

最佳答案

unexpected error是由于 UrlFetchApp 的一个新错误
它已经提交了好几次,例如here .
因此,与其再次归档,您还应该为已经存在的问题“加星标”——以提高其可见性。

关于google-apps-script - 使用 UrlFetch 时抛出 "Unexpected error",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65247137/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com