xray rest api 无密码身份验证

xray rest api authentication without password

我们实际上通过使用 JIRA 用户名和密码进行卷曲来更新 xray 测试用例。

curl -H "Content-Type: application/json" -X POST -u JIRAUSERNAME:JIRAPASSWORD --data @"reports/cucumber.json" https://my.jira-url.com/rest/raven/1.0/import/execution/cucumber

有没有办法使用 jira api 令牌或其他类型的 API 密钥来避免使用 username:password?

如果您使用的是 Jira server/datacenter,现在可以使用个人访问令牌,as of Jira v8.14

在语法方面,创建令牌后,您可以使用“授权”在 HTTP 请求中使用它 header,值为“Bearer ” 就“curl”请求而言,它类似于

curl -H "Content-Type: application/json" -H "Accept: application/json" -H "Authorization: Bearer <your_personal_access_token>"  https://my.jira-url.com/rest/raven/1.0/import/execution/cucumber

您还可以使用 RestMan 提前查看屏幕截图。