我正在尝试获取敏捷jira服务器的令牌,但得到
“ 401未经授权”
对于我正在使用的以下网址,
https://agile-jira.mycompany.com/jira/rest/auth/1/session
我使用授权作为基本身份验证 在标题中,我将 content-type 设置为 application / json
使用POSTMAN作为发送REST调用的工具
答案 0 :(得分:0)
您应该在基本身份验证旁边提供已编码的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/