我正在尝试使用授权(使用JWT令牌)进行Get API调用。我创建了一个单独的Axios示例,并尝试使用Axios拦截器附加授权令牌。我在尝试使用Postman和相同的令牌时获得了状态200,但从我进行API调用时获得了状态403(禁止)。
我的Axios实现是:
let Authinstance = axios.create({
baseURL: SERVER_URL + '/api',
headers:{
'Access-Control-Allow-Origin': '*',
'Content-Type':'application/json; charset=utf-8'
}
})
Authinstance.interceptors.request.use( config => {
const token = Auth().getToken();
config.headers['Authorization'] = `Bearer ${token}`;
return config;
})
export const getPayees = async() => {
const username = Auth().getUser();
const res = await Authinstance.get(`/netbanking/beneficiary/${username}`)
return res.data
}
函数Auth().getToken()
只是从sessionStorage获取并返回令牌。正如你在给定的图像中看到的,我从服务器获得了403状态。enter image description here
我的直觉是我在实现Axios时做错了什么,因为我不熟悉Axios的代码流。请帮帮我
1条答案
按热度按时间hts6caw31#
屏幕上显示的选项请求,你可以尝试把屏幕上的第二个请求.但是你可以试着这样做:
您的实现将是:
告诉我它是否有效。