venkz / Jira

Boilerplate code to do Jira OAuth + examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jira OAuth Setup

This is an to come up with quick boilerplate code for set up and accessing JIRA using OAuth.

Project contains:

  1. requirements.txt comments indicate what are needed when. Run it using pip install -r requirements.txt
  2. export_vars.sh comments indicate what env's are required in each .py file. Do source export_vars.sh
  3. oauth_generator.py contains python logic to do the OAuth dance.
    1. This assumes that you already generated the pem key and pub key
    2. The pub key is shared with JIRA server and a customer_key is obtained in return
    3. Must: install the requirements and configure env vars (step 1 and 2)
    4. Follow instructions in console
  4. access_using_jira_package.py contains python logic to interact with JIRA using jira package
    1. This assumes that you already generated the pem key and pub key
    2. The pub key is shared with JIRA server and a customer_key is obtained in return
    3. Must: install the requirements and configure env vars (step 1 and 2)
  5. access_using_requests_package.py contains python logic to interact with JIRA using requests package
    1. This assumes that you already generated the pem key and pub key
    2. The pub key is shared with JIRA server and a customer_key is obtained in return
    3. Must: install the requirements and configure env vars (step 1 and 2)

About

Boilerplate code to do Jira OAuth + examples


Languages

Language:Python 92.5%Language:Shell 7.5%