I am trying to search issues by using rest api. But I have found the error below:
with basci
MIME type ('application/json') is not executable, and strict MIME type checking is enabled.
No sure if anyone have try access Jira REST api by using jquery
var tok = adminUn + ':' + adminPw;
var hash = Base64.encode(tok);
var authCredentials = "Basic " + hash;
$.ajax({
type: 'GET',
url: jiraApiBaseUrl + 'issue/' + encodeURIComponent(issue),
dataType: 'json',
timeout: issueTimeout,
success: function(data) {
jiraCache[data.key] = data;
processIssue(data.key);
pending--;
checkFinish();
},
error: function() {
if(first) {
lookupLabel(issue);
} else {
error = true;
jiraCache[issue] = 'error';
processIssue(issue);
}
pending--;
if(!first) {
checkFinish();
}
},
beforeSend: function(xhr, settings) {
xhr.setRequestHeader('Authorization',authCredentials);
xhr.setRequestHeader('Content-Type', 'application/json');
}
});
I think it is because you are sending the wrong MIME type with "dataType: 'json'".
This article discusses the issue: https://stackoverflow.com/questions/24528211/chrome-refuses-to-execute-an-ajax-script-due-to-wrong-mime-type
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.