我想知道jira问题的同一部分中的jira问题中的Web链接。 我尝试这样做,但出现错误
jira.add_simple_link(issue_edit, {
"object": {
"url":"http://www.mycompany.com/support?id=1",
"title":"Crazy customer support issue"
}
})
jira.utils.JIRAError: JiraError HTTP 400
text: 'URL' is required., 'Link Text' is required
谢谢
答案 0 :(得分:1)
请尝试像这样移除object
包装器...
jira.add_simple_link(issue_edit, {
"url":"http://www.mycompany.com/support?id=1",
"title":"Crazy customer support issue"
}
)