敏捷 JIRA 身份验证失败
Agile JIRA Authentication failure
我正在尝试为我的 agile-jira 服务器获取令牌,但获取
"401 Unauthorized"
以下url我正在使用它来完成。
https://agile-jira.mycompany.com/jira/rest/auth/1/session
我正在使用 授权 作为 基本授权
在 header 中,我将 content-type 设置为 application/json
使用 POSTMAN 作为发送 REST 调用的工具
您应该提供编码的 base64 用户和密码以及基本身份验证。
对于 Authorization
,提供 Basic base64(user:password)
参数。
base64
是一个函数,它取决于您如何 运行 这些命令。
如果来自 Linux curl,此方法可能有效:"Authorization: Basic $(echo -n user:pass | base64)"
参考文献:
https://developer.atlassian.com/server/jira/platform/basic-authentication/
https://osric.com/chris/accidental-developer/2018/07/curl-basic-auth-base64-encoded-credentials/
我正在尝试为我的 agile-jira 服务器获取令牌,但获取
"401 Unauthorized"
以下url我正在使用它来完成。
https://agile-jira.mycompany.com/jira/rest/auth/1/session
我正在使用 授权 作为 基本授权 在 header 中,我将 content-type 设置为 application/json
使用 POSTMAN 作为发送 REST 调用的工具
您应该提供编码的 base64 用户和密码以及基本身份验证。
对于 Authorization
,提供 Basic base64(user:password)
参数。
base64
是一个函数,它取决于您如何 运行 这些命令。
如果来自 Linux curl,此方法可能有效:"Authorization: Basic $(echo -n user:pass | base64)"
参考文献:
https://developer.atlassian.com/server/jira/platform/basic-authentication/
https://osric.com/chris/accidental-developer/2018/07/curl-basic-auth-base64-encoded-credentials/