Hi,
I am using JIRA API in my automation script. currently, am using Basic authentication for authenticating API calls with the server which requires username and password.
I want to switch to OAuth authentication and configured OAuth in JIRA web application using this doc
“https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-oauth-authentication/”
The above user guide uses jar file to generate an Access Token and is sent with each API call for authentication.
I cannot use that jar application(embed that code in my script) for generating an Access Token every time it gets expired.
So
- How to generate an Access Token?
- What are the headers to be set in the API call for using JIRA OAuth authentication.
- Header for sending Access Token for every API request.
I am using REST Template framework for making API calls.