gpt4 book ai didi

json - 使用 Google Apps 脚本发布 JSON 数据

转载 作者:行者123 更新时间:2023-12-04 01:44:42 26 4
gpt4 key购买 nike

我正在尝试将 JSON 数据从 google 脚本发布到 URL,但出现上述错误:

Server response : HTTP Status 415 - Unsupported Media Type


我的代码:
function myFunctionpost() {
var url = "http://abc.xyz.org/jira/rest/api/2/issue";
var data = {
"project": {
"key": "KEY"
},
"summary": "create issue.",
"description": "Creating of an issue from google spreadsheet using the REST API",
"issuetype": {
"name": "Bug"
}
};
var payload = JSON.stringify(data);

var headers = {
"Accept": "application/json",
"Content-Type": "application/json",
"Authorization": "Basic _authcode_"
};

var options = {
"method": "POST",
"headers": headers,
"payload": payload
};
var response = UrlFetchApp.fetch(url, options);
Logger.log(response);
}
我尝试更改 content-type但没有用。
authcode 正在工作,因为我能够从 URL 获取。

最佳答案

添加到您的 options contentType像这样的对象:

var options = {
"method": "POST",
"contentType": "application/json",
"headers": headers,
"payload": payload
};
ContentType是 fetch 方法接受的高级参数之一。查看更多 here .

关于json - 使用 Google Apps 脚本发布 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17351937/

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