using jrjc lib using Oauth

lital halawi August 30, 2017

hey,

I'm trying to integrate my JIRA site using the jrjc lib version -0.6-m8

(JAVA)

I managed connecting my site using BasicAuth.

and also, managed to 'do the oauth dance' and get my access token.

I'm trying to use the OAuthAuthenticationHandler class. but it fails.

so my code looks like that:

 

JerseyJiraRestClientFactory factory = new JerseyJiraRestClientFactory();
URI jiraUri = new URI(JIRA_URL);
OAuthParameters params = getParameters();
OAuthSecrets secrets = getSecrets();
JiraRestClient restClient = factory.create(jiraUri, new OAuthAuthenticationHandler(params,secrets));
Issue issue = restClient.getIssueClient().getIssue("WB-21739", new ProgressMonitor() {
});

 what am I missing here....

and what is ProgressMonitor?

thanks you all

0 answers

Suggest an answer

Log in or Sign up to answer