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.
I guess without knowing what you actually want to do, the best doc for you would be the REST APIs:
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.