我是python的新手并尝试创建简单的脚本,这将在JIRA中创建新问题。
我不确定代码中的错误。
from jira.client import JIRA
options={'server': 'https://jira.my_jira.com'}
jira=JIRA(options,basic_auth=('user', 'pass'))
root_dict = {
'project' : { 'key': 'project_name' },
'summary' : 'Test auto created issue',
'description' : 'Ignore this. will be deleted shortly',
'issuetype' : { 'name' : 'Task' },
}
my_issue= jira.create_issue(fields=root_dict)
错误是给出
JIRAError:HTTP 400:"需要帐户。" https://jira.my_jira.com/rest/api/2/issue
有人可以建议什么是错的吗?