Hi all,
I'm receiving this error trying to use via jquery the cookie with the previously opened session:
jQuery.ajax({
type: "GET",
url: "http://xxxx.xxxx.xxxx.xxxx/rest/api/2/issue/myissue",
contentType: "application/json",
beforeSend: function (request) {
request.setRequestHeader("cookie", document.cookie);
},
error: function (request, status, error) {
console.log('Error');
},
success: function (data) {
console.log('Success');
}
});
Does anyone know which is the proper way to use this cookie for ajax calls?
After this error I also receive "The 'Access-Control-Allow-Origin' header contains multiple values".
Thanks in advance.
Hello MP.
A little bit late, however, I think that you are being affected by JRASERVER-59101. The work around is to setup a proxy and rewrite Access-Control-Request-Method header. Please see the bug report for more details. I believe that this post in our Community could also be of interest to you: https://community.atlassian.com/t5/Answers-Developer-Questions/Cross-Origin-Resource-Sharing-with-JIRA-REST-API-and-Javascript/qaq-p/484801.
Hope this helps!
Cheers,
Jennifer van Leeuwen | Atlassian Support
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.