Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×I'm trying to pull issues from Jira Cloud to my Sharepoint web page.
$.ajax
({
url: "https://example.atlassian.net/rest/api/2/search",
method: "GET",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
alert("Successful");
},
error: function (requestData, error, errorMsg) {
alert(requestData.status);
}
});
But i'm getting blocked by Same Origin Policy. How do i work around this?