我正在使用 JIRA Python REST API 在 JIRA 中创建问题,但我不知道如何设置问题的创建日期和更新日期字段,以及将日期格式化为 JIRA 想要的格式。我的是下面的代码:
jira.create_issue(project={'key': 'DEL'},
created='10/4/2012 9:30:00 AM',
updated='12/22/2012 10:00:00 AM',
priority={'name': 'Critical'},
summary='My summary',
description='My description',
issuetype={'name': 'Bug'})
它给了我一个恼人的错误,它甚至无法识别这些字段,即使它们存在(参考:http: //jira-python.readthedocs.org/en/latest/index.html):
JIRAError: HTTP 400: "{u'updated': u"Field 'updated' cannot be set. It is not on the appropriate screen, or unknown.", u'created': u"Field 'created' cannot be set. It is not on the appropriate screen, or unknown."}"