The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 
  • Community
  • Q&A
  • Jira
  • Questions
  • getting 405 (Method Not Allowed) error when I am trying to create a jira issue using rest api AJAX call.

getting 405 (Method Not Allowed) error when I am trying to create a jira issue using rest api AJAX call.

Trupti Kanase
May 25, 2014

when I am trying to create a jira issue using curl command then it is working but while creating the same using rest api AJAX call it is throwing an error as "405 method not allowed".

AJAX call is:

$.ajax({

type: "POST",

url: 'http://localhost:8888/rest/api/2/issue',

data: parameters,

contentType: 'application/json',

dataType:'jsonp',

processData: false,

async: false,

beforeSend: function (xhr) {

xhr.setRequestHeader ("admin", "admin")

},

success: function(){

alert("Success");

},

error: function(){

alert("Failed");

}

});

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Trupti Kanase
June 24, 2014

This error was because of cross domain.Here I was trying to create jira issue from confluence using rest api but that did not work.

Fixed the error by using jersey client instead of rest api & it worked.

TAGS
AUG Leaders

Atlassian Community Events