Reputation: 93
How can I fetch data from JIRA using Java? What are the steps and ideas? The program should automatically connect Jira and fetch data Please help
Upvotes: 1
Views: 1158
Reputation: 2060
There are multiple ways to access Jira and you need to differentiate between Jira Cloud and Jira Server (since you didn't specify which one you want to access).
Jira Cloud
Jira Cloud only offers a REST API to communicate. Have a look at the REST API docs (Supported authentication: Basic Auth, JWT, OAuth) or the get started guide to create your own app for Jira Cloud.
Jira Server
Jira Server offers a REST API (Supported authentication: Basic Auth) as well as a Java API to access data. There are also guides to get you started using the Java API by creating your own Jira app for Jira Server.
Upvotes: 1