Jira REST API with OAuth token using Jquery Ajax

Qi Jiang June 27, 2017

I am try to use Oauth token to access Jira REST API by using jquery, Token URL works with REST client tool.

$.ajax({
url:URL,
headers: {
"Content-Type":"application/json",
"X-Atlassian-Token":token

"Accept": "application/json",
"Cache-Control": "no-cache"
},
type: 'GET', // The HTTP Method
datatype: 'jsonp',
async: false,
success: function(data){
alert('Sucess data: ' + data);
},
error: function(data){
alert('alert error');
},
complete: function(xhr) {
if (xhr.status === 200) {
console.log("done!"+ xhr.getAllResponseHeaders());
}
else {
console.log('Request failed. Returned status of ' + xhr.status);
}
},
error: function( req, status, err ) {
console.log( 'something went wrong', status, err );
}

});

1 answer

0 votes
tomd
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 1, 2017

Hello Qi Jiang,

Any errors from the server side, could you please provide more details?

Tom

Qi Jiang October 24, 2017

@tomdbecause its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.

Suggest an answer

Log in or Sign up to answer