gpt4 book ai didi

api - header 中的 Google Apps 脚本和外部 API 授权失败

转载 作者:行者123 更新时间:2023-12-02 22:06:36 25 4
gpt4 key购买 nike

试图让它发挥作用。我在参数列表后不断收到 Missing ) 。 (第 6 行,文件“代码”)关闭。我仔细检查了我的括号,但无济于事。我错过了什么吗?

我希望这是一个合理的问题。谢谢。

function myFunction() {
var url = "https://company.harvestapp.com/people";
var headers = {
"Accept": "application/xml",
"Content-Type": "application/xml",
"Authorization": "Basic " + Utilities.base64Encode(dude@dude.com +":"+pw)
};
var response = UrlFetchApp.fetch(url,headers);
var text = response.getResponseCode();
Logger.log(text);
}

最佳答案

明白了。也感谢布赖恩。我终于意识到您需要一个“选项”对象,您可以在其中传递方法和 header 。

function myFunction() {
var url = "https://swellpath.harvestapp.com/people/";
var user = "dude@dude.com";
var password = "supersecurepw";

var headers = {
"Accept": "application/xml",
"Content-Type": "application/xml",
"Authorization": "Basic "+ Utilities.base64Encode(user+":"+password)
};

var options = {
"method" : "get",
"headers" : headers
};

var response = UrlFetchApp.fetch(url,options);

Logger.log(response);
}

关于api - header 中的 Google Apps 脚本和外部 API 授权失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16027002/

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