向缺陷跟踪工具发送创建问题的请求时,获取“415 Unsupported Media Type”响应状态

时间:2014-06-12 07:14:37

标签: jquery ajax json jira-rest-api

以下是我的请求(来自我的.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");
                        }
                    }); 

1 个答案:

答案 0 :(得分:0)

Content-Type更改为contentType,找到.ajax()文档here