Error while using jira-python

Michał Bek April 17, 2016

Hello,

I am using jira-python 1.0.4 and Python 3.4

My code:

from jira import JIRA
jira_options = {'server': 'https://jira.atlassian.com'}
jira = JIRA(options=jira_options, basic_auth=('mylogin', 'mypassword'))
issue = jira.add_comment('DEMO-10845', 'preview')

drops following error:

http://pastebin.com/Djv8JDV3

 

Please advice.

Michał

1 answer

0 votes
Aleks Yenin (Polontech)
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.
April 18, 2016

import json
import requests
from requests.auth import HTTPBasicAuth
baseurl = 'https://jira.atlassian.com/rest/api/2/issue/DEMO-10845/comment
headers = {
'Content-Type': 'application/json',
'X-Atlassian-Token': 'nocheck'
}
auth = HTTPBasicAuth('mylogin''mypassword'

data = {"body": "This is a comment."}

requests.put(
baseurl,
headers=headers,
auth=auth,
data=json.dumps(data)
)

Michał Bek April 18, 2016

I receive "Response 401" output. smile

Suggest an answer

Log in or Sign up to answer