Postman双重授权

问题描述 投票:0回答:2

我在网站上有基本的身份验证,如何在标头中包含两种授权方法:Bearer 和 token? 如果可以的话,这是否可能,因为如果我这样给出:

enter image description here

这是当一个覆盖另一个并且不起作用时。

magento postman basic-authentication magento-rest-api
2个回答
1
投票

您可以使用逗号设置多个授权

Authorization: Basic X,Bearer Y

X 是 Base64 编码的

username:password
。基本必须先于持有者。

如果您想在父级中设置它,您可以考虑使用预请求脚本:

const X = btoa('user:pass');
const Y = 'BEARER TOKEN';
pm.request.headers.add({
    key: 'Authorization',
    value: `Basic ${X},Bearer ${Y}`,
});

0
投票

如果使用Postman测试API,已经支持调用API时添加授权 使用权: 在授权部分中选择不记名令牌并输入您的令牌 注意:您不能向标头添加授权

© www.soinside.com 2019 - 2024. All rights reserved.