gpt4 book ai didi

ajax - JIRA Rest API 错误。无法识别的 token 造成了问题

转载 作者:行者123 更新时间:2023-12-01 22:06:58 24 4
gpt4 key购买 nike

通过 AJAX 和 REST API 添加问题不太顺利。我可以让它与 Postmen 一起工作,不幸的是,无法通过 Ajax 请求来获取它。

我创建的 JSON 很好,post 请求也很好。 issuestype 是我自己创建的,使用 Bug 也会出现同样的问题。查看创建的 JSON 对象、我的错误和我的代码:JSON 对象(这是来自 console.log 的片段):

snippet from the console. (I do console.log(jira)

错误

0: "Unrecognized token 'fils5poet5': was expecting 'null', 'true', 'false' or NaN↵ at [Source: org.apache.catalina.connector.CoyoteInputStream@7b958ed2; line: 1, column: 21]"

jira = {
fields : {
project : {
key : "CIC"
},
summary : "test",
description: "test",
issuetype : {
name : "Sandbox item"
}
}
};

console.log(jira); //Also see image at top of this post.

// Submit to Jira api
$.ajax({
type : "POST",
dataType : "JSON",
url : configuration.api_url,
beforeSend: function (xhr) {
xhr.setRequestHeader ("Authorization", "Basic ItsAWrap!(itworks...)"),
xhr.setRequestHeader ("Content-Type", "application/json");
},
data : jira,
success : (function(response) {
//Do something
}})

最佳答案

在发送 jira 变量之前,您需要对其进行 JSON.stringify 处理。

关于ajax - JIRA Rest API 错误。无法识别的 token 造成了问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27816233/

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