No 'Access-Control-Allow-Origin' header Error : quering JIRA rest api

vikram jeet singh April 17, 2017

Hi,
I am unable to login as getting the CORS error. I also enabled URL from adding whitelist as an administrator and it doesn't work. 

Here is my code, simple ajax request by using jquery:

 

var username = "******";
var password = "******";


$.ajax({
url: "https://jiradomain.com/rest/auth/1/session",
type: 'GET',
contentType: 'application/json',
crossOrigin: true,
beforeSend: function(xhr) {
xhr.setRequestHeader("Authorization", "Basic " + window.btoa(username + ":" + password));
},
error: function(error) {
console.log(error);
},
success: function(data) {
console.log(data);
}
});


 

Some of other guys also faced same issue:
https://community.atlassian.com/t5/JIRA-questions/ CORS-issues-with-JIRA-REST-API-even-after-adding-t ...

Please help us we are not able to move ahead as we stuck at first step.
Thanks

1 answer

0 votes
Dario B
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 7, 2017

Suggest an answer

Log in or Sign up to answer