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:
Please advice.
Michał
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)
)
I receive "Response 401" output.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.