Hello,
As a newbie, I'd like to get an idea how to issue a JIRA rest api, as well as how to authenticate to the server? Here is an example api:
# GET http://<Your_JIRA _Server>/rest/api/2/issue/<Issue_Key>
example: GET 'http://dev:8080/rest/api/2/issue/TWP-1116
username = b'mwise'
plus = b':'
password = b'PAssword'
issueId = 'TWP-1116'
baseURL = 'http://dev:8080'
getIssueId = baseURL + '/rest/api/2/issue/' #
credentials = (username + plus + password).decode("utf-8")
headers = {"Authorization": " Basic " + credentials, "Content-Type": "application/json"}
2. Once authenticated, I'd like an example of issuing the api? Something like?
request = urllib.request.urlopen(getIssueId + issueId, headers=headers)
request.get_method = lambda: 'GET'
response_body = urllib.urlopen(request)
print(response_body.read())
3. There is then a json packet response, which needs to be parsed. How would this example parse to get the 'id' included in the "expand" response ?
{
"expand": "renderedFields,names,schema,transitions,operations,editmeta,changelog",
"id": "15828",
"self": "http://dev:8080/rest/api/2/issue/15828",
"key": "TWP-1108",
"fields": {
"issuetype": {
"self": "http://devcenter:8080/rest/api/2/issuetype/10205",
"id": "10205",
"description": "This Issue Type is used to create Zephyr Test within Jira.",
"iconUrl": "http://dev:8080/download/resources/com.thed.zephyr
I would use the Requests library - it will save you from writing a lot of boilerplate. Check out the documentation - it's pretty good. It handles all the things you need (basic authentication, JSON parsing, etc.).
In your case the code would look something like:
r = requests.get(baseURL + '/rest/api/2/issue/TWP-1116', auth=('user', 'pass')) id = r.json().id
Petar,
Thanks! I now have the general idea!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Petar,
auth is not working after username, password are deprecated and we have to use the accountid inplace of it.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is also a Python module called jira.
It wraps Jira REST API and is much easier to use than requests.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.
Register today!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.