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

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.

Suggest an answer

Log in or Sign up to answer