以下是我的请求(来自我的.js文件),用于通过rest api在缺陷跟踪工具中创建问题。
但我的回复状态为 415不支持的媒体类型,我的请求中是否有任何问题或其他问题?
$.ajax({ "type": 'POST', "url": 'https://jira.example.com/rest/api/2/issue/', "Content-Type": "application/json", "data":JSON.stringify({ "fields": { "project": { "key": "TEST" }, "summary": testCaseName, "description": description, "priority": { "name": priority }, "issuetype": { "name": "Bug" } } }), "dataType": "application/json", "success": function() { alert("success"); }, "error":function(){ alert("failure"); } });