I am trying to call JIRA REST API from Java function and I am not really sure how to do it.
Currently, I am using something like
String baseURL = ComponentAccessor.getApplicationProperties().getString(APKeys.JIRA_BASEURL);
String address = baseURL + "/rest/api/2/issue/" + issueID;
URL url = new URL(address);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Accept", "application/json");
which fails on authorization (401). I have found some suggestions to include encoded login and password to the request, but I would like to use the current logged user.
I found some tutorials for JIRA REST Java Client, but cant seem to get it working.
Can someone point me out to some simple example of calling internal REST API using logged users credentials? If such thing is even possible.
I believe you can do that through authenticated Cookies. You will need to use credentials to create those, but then you can make calls pointing to that cookie, which should validate the session.
This page is really helpful:
https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-cookie-based-authentication/
Doesnt that just transfer the problem somewhere else?
I am trying to call the REST API from inside the Workflow Postfunction, I dont have access to the credentials. Sure, on my machine I can hardcode "admin"/"admin", but how would that work when you install the plugin on any other system?
I mean, I have been using Ajax REST calls without specifying any authentication, I assumed there would be some Java equivalent.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mathieu YargeauI dont remember exactly, but I think you can access most of the data from internal APIs directly through some accessors (like pulling out an issue or list of custom fields).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For most cases, yes, but I am trying to create an entity link (link between a Jira project and a Confluence space) and the only way I found was through a private REST API.
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.