Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get Java equivalent REST call of Curl command

Elliot Kim
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 23, 2019

Currently I have a bash program using curl:
```
- curl -D- -u username:password -X POST -H "Content-Type: application/json" --data '{"jql":"project = BCACXB&issuetype = 11100","startAt":0,"maxResults":0}' "http://jira.mywebsite:8080/rest/api/2/search"
```

However, due to security issues, we decided to use OAuth to prevent hard coded private data.

I have been following https://developer.atlassian.com/server/jira/platform/oauth/ to get to step 3 where I have the access token but I would like to do equivalent of my curl command using Java and I can't seem to find any documentation about it. Is there somewhere where I could find it or have some way around it?

1 answer

0 votes
Thomas Deiler
Community Champion
July 24, 2019

Dear @Elliot Kim ,

for Java you have to build the whole request on your own, when not using any SDK. You could do this for example with Apaches HTTPClient.

One page that shows some samples. You can just search the web for more examples.

So long

Thomas

Suggest an answer

Log in or Sign up to answer