Hello,
I'm trying to test a REST API call with Groovy in the ScriptRunner console but resp is always null. I can get the same content via PowerShell. Anyone know what I'm doing wrong here?
import groovyx.net.http.HTTPBuilder
import net.sf.json.JSONArray
import org.apache.http.HttpRequest;
import org.apache.http.protocol.HttpContext;
import org.apache.http.HttpRequestInterceptor;
def JIRA_API_URL = "https://mydomain.com"
def jira = new HTTPBuilder(JIRA_API_URL);
jira.client.addRequestInterceptor(new HttpRequestInterceptor() {
void process(HttpRequest httpRequest, HttpContext httpContext) {
httpRequest.addHeader('Authorization', 'Basic ' + 'myuser:mypassword'.bytes.encodeBase64().toString())
}
})
def resp = jira.get(path: '/rest/api/2/issue/WO-440', query : [expand:'renderedFields', fields: '"customfield_11101"'])
Why are you using HTTPBuilder?
Here is a complete code that will work for you, just copy paste:
import com.atlassian.jira.component.ComponentAccessor;
import org.apache.commons.httpclient.Credentials;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.UsernamePasswordCredentials;
import org.apache.commons.httpclient.auth.AuthScope;
import org.apache.commons.httpclient.methods.*;
def baseUrl = ComponentAccessor.getApplicationProperties().getString("jira.baseurl");
//rest api request
HttpClient client = new HttpClient();
GetMethod method = new GetMethod(baseUrl + "/rest/api/latest/issue/WO-440?expand=renderedFields&fields=description");
Credentials credentials = new UsernamePasswordCredentials("jira","jira");
client.getParams().setAuthenticationPreemptive(true);
client.getState().setCredentials(AuthScope.ANY, credentials);
client.executeMethod(method);
def response = method.getResponseBodyAsString()
method.releaseConnection();
return response
Thanks Nir! This returns an error about an empty host or something, but I'm not gonna get basic auth working the way I want anyway when traffic's coming in through a load balancer that's enforcing MFA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Try to found why your request fails. For example:
import groovyx.net.http.HTTPBuilder
def jira = new HTTPBuilder("http://yourjira.com")
jira.auth.basic 'user', 'pass'
jira.handler.failure = { resp ->
" ${resp.statusLine}"
}
def response = jira.get(path: '/rest/api/2/issue/KEY-123')
This way i get "HTTP/1.1 401".
Your code works for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Your code works fine on my side, but the only thing you are not controlling are the possible exception thrown, so I would suggest defining handlers for HTTP errors as mention by @Anton Chemlev - Toolstrek -
Please refer to https://github.com/jgritman/httpbuilder/wiki/Response-Handlers for further details.
Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you both! It's our KEMP load balancer causing a 403. Crud. Looking into oauth.
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.