...
| Excerpt |
|---|
If you are writing a script that interacts with Jira through a REST API, you should authenticate using an OAuth token, rather than an embedded username/password. Here we describe one way to do the 'oauth dance' to generate a trusted token using Python 3 - specifically the |
| Table of Contents |
|---|
On with the instructions.
Establishing OAuth trust
Install Python 3
...
| Code Block |
|---|
openssl genrsa -out rsa.pem 2048
openssl rsa -in rsa.pem -pubout -out rsa.pub
|
Create an application link
...