You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I tried all solutions from community questions, adaptavists documentation, none of them work
I got following issues:
Approach 1 **********************************************
Code:
def activitiRestClient = new RESTClient("http://10.16.2.197:8085/")
activitiRestClient.auth.basic "username", "password"
def response = activitiRestClient.post(
path: "/rest/api/latest/queue/OR-TES"
)
Error:
2019-01-16 04:43:25,187 ERROR [runner.AbstractScriptListener]: Script function failed on event: com.atlassian.jira.event.issue.IssueEvent, file: <inline script> groovyx.net.http.HttpResponseException: at groovyx.net.http.RESTClient.defaultFailureHandler(RESTClient.java:263) at groovyx.net.http.HTTPBuilder$1.handleResponse(HTTPBuilder.java:503) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:223) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:165) at groovyx.net.http.HTTPBuilder.doRequest(HTTPBuilder.java:515) at groovyx.net.http.RESTClient.post(RESTClient.java:141) at groovyx.net.http.RESTClient$post.call(Unknown Source) at Script448.run(Script448.groovy:58)
Approach 2 *************************************************************
"curl --request POST --url http://10.16.2.197:8085/rest/api/latest/queue/OR-TES --header \"Authorization:Basic correct encoded format\" "
def proc = command.execute()
proc.waitFor()
log.warn "Process exit code: ${proc.exitValue()}"
log.warn "Std Err: ${proc.err.text}"
log.warn "Std Out: ${proc.in.text}"
Error:
Couldn't resolve host 'encoded username:password"'