Hello,
I want to create post function based on REST API but i have problem because with being Unauthorized
This is base code in which i wanted to test connections with rest api
import groovyx.net.http.HTTPBuilder
import net.sf.json.JSONArray
def JIRA_URL = "https://myjiraurl"
def JIRA_API_URL = JIRA_URL + "/rest/api/2/"
def jira = new HTTPBuilder(JIRA_API_URL)
jira.auth.basic "login","password"
def test = jira.get(path: 'issue/XXX-5555')
i get this errors:
groovyx.net.http.HttpResponseException: Unauthorized at groovyx.net.http.HTTPBuilder.defaultFailureHandler(HTTPBuilder.java:651) at groovyx.net.http.HTTPBuilder$1.handleResponse(HTTPBuilder.java:503) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:222) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:164) at groovyx.net.http.HTTPBuilder.doRequest(HTTPBuilder.java:515) at groovyx.net.http.HTTPBuilder.get(HTTPBuilder.java:285) at groovyx.net.http.HTTPBuilder.get(HTTPBuilder.java:255) at groovyx.net.http.HTTPBuilder$get$0.call(Unknown Source) at Script146.run(Script146.groovy:8)
I don't know what to do with that :( I think that is because of that my jira instance is on HTTPS not HTTP but i am not sure, can somebody help me?
This is a quirk of HTTPBuilder. I think your hitting the issue described here.
Following the second example there should help you solve your problem.
Although it looks like your just hitting the issue REST API, you should be able to get all the issue data through the Java API without hitting the REST API.
The following should work for you if you want to do this via the REST API:
import groovyx.net.http.HTTPBuilder
import groovyx.net.http.Method
def remote = new HTTPBuilder("https://myjiraurl")
def issueJson = remote.request(Method.GET) { req ->
uri.path = "/rest/api/2/issue/XXX-5555"
headers.'Authorization' =
"Basic ${"login:password".bytes.encodeBase64().toString()}"
response.success = { resp, json ->
json ?: [:]
}
}
Hello Adam,
Sorry for lat response :( Can you show me example of rest api with script runner? I tried with solutions from your link but it doesn't work (or i dont know how to use it)
cheers,
Maciej
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've updated my answer with what should work for you. You'll need to change username and password along with the issue key.
Hope this helps.
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.
I am able to get access_token but now how do I get access_code out of response and use it for second REST API call by adding it in header?
Please HELP.
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.