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."}"