我正在使用Google脚本连接到外部API,代码为:
var url='https://app.ecwid.com/api/v1/XXX/orders'
var parameters = { method : 'get',
headers : {'Authorization': 'Bearer '+'yyy'},
contentType:'application/json',
muteHttpExceptions:true};
var response = UrlFetchApp.fetch(url,parameters).getContentText();
Logger.log(response);
但为什么会返回以下错误?
HTTP ERROR 401
Problem accessing /api/v1/XXX/orders. Reason:
Unauthorized
答案 0 :(得分:1)
尝试从参数中删除contentType并给它一个镜头。
对于跨域请求,请将内容类型设置为
以外的任何内容将触发浏览器向服务器发送预检OPTIONS请求。