我最近在我的React本机应用程序中实现了Axios。我面临的问题是,每当我向请求添加授权标头时,它都会返回400,而具有相同Auth令牌的相同请求在Postman上运行正常。可能是什么问题?
axios.get(EndPointURL, {
headers: {
Authorization: BearerToken
}
})
.then(result => {
console.log(result);
})
.catch(reason => {
console.log(
reason
);
});
}
答案 0 :(得分:0)
您确定BearerToken与PostMan中使用的令牌相同吗?在我看来,您不需要添加OAuth2所需的Bearer
前缀
示例:
headers: {
Authorization: `Bearer ${BearerToken}`
}