Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,551,879
Community Members
 
Community Events
184
Community Groups

Use Unirest in Scriptrunner for Server

Hi,

I've been doing some integration with JIRA and ServiceNow and was using an JIRA cloud dev environment for my initial testing where everything was working great.

I have now transitioned to a local server version of JIRA and it seems like the Unirest.post function is not defined by default in this version. I was wondering if there is an import I can make to get it to work or if I need to use a different method.

def statusresponse = Unirest.post("https://xxxxx.service-now.com/api/now/table/change_request")
.basicAuth("xxxx", "xxxxx")
.header("Accept","application/json")
.header("Content-Type","application/json")
.body("{\"u_subcategory\":\""+iss+"\",\"category\":\"Jira Integration\",\"short_description\":\""+desc+"\",\"correlation_id\":\""+key+"\",\"correlation_display\":\"Jira Integration\"}")
.asJson();

 

This is the code that was working on the cloud version but now gives an error in the server version.

2 answers

1 accepted

1 vote
Answer accepted
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jan 03, 2018

Hello,

Kindly have a look at this link (there is an example of how you can do it)

https://community.atlassian.com/t5/Answers-Developer-Questions/Making-a-REST-call-using-script-runner/qaq-p/576712

Using that method and I'm able to send the POST request. But with Unirest after running the Unirest.post function it returns the body of the response :

POST https://devxxxx.service-now.com/api/now/table/change_request asJson Request Duration: 4422ms
status: 201 - Created
body: {"result":{"parent":"","made_sla":"true","caused_by":"",....}}

 I seem to be unable to retrieve the response body using HttpURLConnection

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jan 04, 2018

I think connection.getResponseMessage() should get the response.

connection.getResponseMessage() was returning sun.net.www.protocol.http.HttpURLConnection$HttpInputStream@69c728b9

 

I had to buffer the input stream to read it properly:

def inputStream = connection.getInputStream();

BufferedReader input = new BufferedReader(
new InputStreamReader(
inputStream));

StringBuilder response = new StringBuilder();
String currentLine;

while ((currentLine = input.readLine()) != null)
response.append(currentLine);

input.close();
response.toString();

 This gave me the same output as using Unirest.

 

Thanks for the help!

Not sure why Unirest is not working in ScriptRunner. I tried everything and searched a lot but I couldn't get it to work.

 

BufferedReader & StringBuilder would also work but it looked to complicated.

 

But parsing the inputStream with Groovy JsonSlurper is working for me. Like in the snippet below:

import groovy.json.JsonSlurper;
// ... code from the example

InputStream inputStream = connection.getInputStream();
def json = new groovy.json.JsonSlurper().parse(inputStream);
log.info(json.getAt(0));

Use

@Grapes(
@Grab(group='com.mashape.unirest', module='unirest-java', version='1.4.9')
)
import com.mashape.unirest.http.Unirest

Unirest.get("<URL>")

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events