I am trying to use a rest call to get the custom fields in JIRA. The method I am using is "/rest/api/2/field". When I use this in the browser it returns all of the fields including the custom fields. However when I use this same method in my java project it only returns the JIRA non-custom fields. The code I am using in java follows.
String auth = new String(Base64.encodeBase64("username:password".getBytes()));
WebResource webResource = clientRest.resource("http://example.com:8080/jira/rest/api/2/field");
ClientResponse response = webResource.header("Authorization", "Basic " + auth).type("application/json").accept("application/json").get(ClientResponse.class);
String output = response.getEntity(String.class);
How do I fix this so that I can get the custom fields with this call?
It might be a dumb question, but are you sure there are any custom fields on your developement instance? As far as I remember, a virgin dev Jira only has Jiras default fields, which would not count as customfields...
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.