使用python通过JIRA API创建问题会产生HTTP 400错误

时间:2014-11-25 20:38:30

标签: python python-2.7 jira jira-rest-api python-jira

我是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

有人可以建议什么是错的吗?

0 个答案:

没有答案