JIRA Cookie Based Authentication and REST API Calls in Python

Dan-Epiphan July 17, 2017

Hello,

   I am realtively new to the JIRA REST API & accessing / leveraging it via Python.

 

   Following other examples found here, I have managed to authenticate and believe I have a session cookie now by doing the following :

 

    import requests

    loginurl = 'https://office.company.com:8150/login.jsp'

    resp = requests.post(loginurl, data={'username': 'myusername','password': 'mypassword'})

    print(resp.status_code, resp.reason)

 

   The end result of the print statement is (200, OK).

 

   I need to take this to the next level, to pull some data from JIRA; or create a new ticket and store data.

   

   I have been experimenting with requests.get & requests.put; however have been having very limited success.

 

   Anyone with some recommendation / suggestion / reference would be greatly appreciated.

 

Thank you,

 

Dan.

 

 

1 answer

1 accepted

0 votes
Answer accepted
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 24, 2017

I guess without knowing what you actually want to do, the best doc for you would be the REST APIs:

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events