如题:使用 python-jira 库,通过 create_issue 来创建 bug 单,因公司设置有自定义字段,按照自定义设置去传,报错:
response text = {"errorMessages":[],"errors":{"customfield_10301":"无法找到有效的 “id” 或 “值” 在父母的选择对象。"}}

请教该如何解决?

测试 demo:
{
"project": {"id": "10000"},
"summary": "bug 标题",
"description": "Bug 实际现象描述",
"priority": {"name": "Low" },
"assignee": {"name": "xxx"},
"issuetype": {"id": "10004"},
"customfield_10303": "测试环境",
"customfield_10304": "测试步骤",
"customfield_10301": "10205"
}
因为 10301 是必传字段,所以在加入这个值以后,创建 bug 时一直报以上错误。


↙↙↙阅读原文可查看相关链接,并与作者交流