With reference to following JRJC wiki,
https://ecosystem.atlassian.net/wiki/spaces/JRJC/pages/27164680/Tutorial
This seems kinda out of date and wondering if there is an updated version which can be used with both Server and Cloud version of JIRA. Looking for some references as to connecting to cloud version of JIRA. I have built a sample REST client using JRJC working with server version (7.x) and wondering if it can work with cloud version as well.
For the most part, yes. The REST APIs on Cloud and Server are mostly the same, so a JRJC based application will talk to both of them the same way.
However, they are diverging products, so do not expect them to be identical, and certainly plan for them to diverge further. I suspect all the basic stuff will remain the same (projects, issues, workflows etc), but you'll find reporting and admin stuff diverging quite a lot.
Is there any viable java lib for Jira Cloud?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am using Jira Cloud . Using JRJC , I am not able to do authentication itself, I am following this blog (https://www.baeldung.com/jira-rest-api) , creating jira client by passing username & password in function shows below , however I am getting 401 authorization failure . Is there different client for cloud ?
private JiraRestClient getJiraRestClient() {
return new AsynchronousJiraRestClientFactory()
.createWithBasicHttpAuthentication(getJiraUri(), this.username, this.password);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That has nothing to do with JRJC.
Application links are for linking Atlassian applications together. The JRJC is a program that gives codes a client library for handling Jira REST calls in their applications.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.