在jira问题中添加Web链接

时间:2018-07-23 12:58:27

标签: python hyperlink jira

我想知道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

谢谢

1 个答案:

答案 0 :(得分:1)

请尝试像这样移除object包装器...

jira.add_simple_link(issue_edit,  {
        "url":"http://www.mycompany.com/support?id=1",
        "title":"Crazy customer support issue"
    }
)