You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
When writing a User Macro to visualize/access information from for example JIRA in confluence I use Ajax calls through the application link:
confbase = AJS.Confluence.getBaseUrl();
confproxy = "XXXXX";
jirabase = "https://xxx.yyy.net";
jQuery.ajax({
url: confbase+"/plugins/servlet/applinks/proxy?appId="+confproxy +"&path="+jirabase+"/rest/api/2/search?jql="+"$paramJQL"
type: "GET",
dataType: "json",
}).done(function(data) {
...
}
I am forced to hardcode the jirrabase and the proxy!
As a admin in the system I'm able to:
//
// Get a list of all application link configured in Confluence
//
/*
jQuery.ajax({
url: confbase + '/rest/applinks/1.0/listApplicationlinks.json',
type: "GET",
dataType: "json",
success: function(data) {
AJS.log("Yes!");
}
}).done(function(data) {
//
// Iterate over a list of application links
// search for Jira application link
// search in Jira application link found
//
jQuery.each(data.list, function (i, v) {
if (v.application.typeId == 'jira') {
confproxy = v.application.id;
jirabase = v.application.displayUrl;
}
})
I guess there is a security problem letting all users access this REST API?
Is there some other solution to this problem?
I've had some previous problems with JQuery and the proxy, most of them resolved by now - Thank you all! The remaining problem is to use PUT (Creating or Modifying issues in JIRA from Confluence) - Yes I know there are plugins, but I want total control.
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events