How to get authentication status in Jira java Rest Client

Madhan Gopal
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!
December 15, 2019

I am trying to use jira rest client and I am successfully able to create or retrieve issues. This is a sample code for creating an issue

JiraRestClient restClient = new AsynchronousJiraRestClientFactory()
                .createWithBasicHttpAuthentication(URI.create("url"), "user", "pwd");
        IssueRestClient issueClient = restClient.getIssueClient();
        IssueInput newIssue = new IssueInputBuilder(
          "BOARD", (long)1, "name").build();        issueClient.createIssue(newIssue).claim().getKey();

What I need to know is how do I get to know the authentication was successful or not when i create a JiraRestClient object

JiraRestClient restClient = new AsynchronousJiraRestClientFactory()
                    .createWithBasicHttpAuthentication(URI.create("url"), "user", "pwd");

After the above line is executed, how can i get the authentication status (exaple :200 or 401)

1 answer

0 votes
Diego Daibert February 6, 2020

Same problem here!

Suggest an answer

Log in or Sign up to answer