Hi,
We're using Jira v5.1.2 and we try to create new Jira issue via rest api.
we run :
cmd = "curl.exe -D- -u user:pass -X POST --data @data_to_send.json -H 'Content-Type: application/json' 'User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0' http://outJiraSite/rest/api/2/issue/"
subprocess.check_call(cmd)
data_to_send.json:
{
"fields" : {
"project": {
"key": "CT"
},
"summary": "testing",
"assignee": {
"name": 'team'
},
"issuetype": {
"name": "Task"
},
"description": "Testing automatic create Jira Issue \n",
}
}
and get :
curl: (6) Could not resolve host: (nil); Host not found
HTTP/1.1 415 Unsupported Media Type
Date: Tue, 10 Sep 2013 07:38:46 GMT
Server: Apache-Coyote/1.1
X-AREQUESTID: 38x583x1
X-Seraph-LoginReason: OK
X-ASESSIONID: 6n27hs
X-AUSERNAME: --------
Content-Type: text/html;charset=utf-8
Content-Length: 1117
Set-Cookie: JSESSIONID=----------------------------------; Path=/; HttpOnly
Set-Cookie: atlassian.xsrf.token=BBOO-X31J-0L8A-OSLQ|---------------------|lin; Path=/
<html><head><title>Apache Tomcat/6.0.32 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 415 - Unsupported Media Type</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>Unsupported Media Type</u></p><p><b>description</b> <u>The server refused this request because the request entity is in a format not supported by the requested resource for the requested method (Unsupported Media Type).</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.32</h3></body></html>
Can you please help and advice?
Is there any other way to create Jira issue via rest api?
Thanks!!
Shani