当访问令牌过期并想用令牌刷新它时出现问题。我有两种方法,一种显示帐户并使用 axios post,另一种刷新令牌。
export const add_account = account=>{
var token=localStorage.getItem("access_token")
var decoded=jwt_decode(token);
var time_exp=decoded.exp;
if(time_exp<new Date().getTime()/1000) {
refreshToken();
}
return axios.post("http://localhost:5000/accounts",{
acc_name:account.name,
acc_pass:account.pass,
acc_host:account.host,
acc_description:account.description
}, {headers: {
'Authorization': `Bearer ${localStorage.getItem('access_token')}`
}}).then(res=>{
return res.data
})
}
第二种方法是刷新方法,我注意到在调试中首先进入刷新令牌函数,当进入该函数时转到.then(res=> .... 然后返回第一个函数进程返回 axios.post 并查看该 access_token 已过期。之后返回 refreshToken() 并设置本地存储 access_token。
export const refreshToken=()=>{
return axios.post("http://localhost:5000/refresh",null,{headers: {
'Authorization': `Bearer ${localStorage.getItem("refresh_token")}`
}}).then(res=>{
localStorage.setItem('access_token',res.data['access_token']);
return res.data;
}).catch(e=>{
console.log(e)
})
凤凰求蛊
相关分类