在 RNDebugger 中禁用切换网络检查时,授权无法正常工作,并且我从服务器收到未经授权的响应。但是,当我在调试器中启用网络检查时,它可以正常工作并给我正确的响应。谁能帮我?
这是禁用网络检查时我的请求:
这是启用网络检查时的相同请求:
这是我的 Axios 请求:
axios.get('https://*******.com/api/v1/profile',{
headers:{
'Cache-Control': 'no-cache, no-store, must-revalidate',
'Pragma': 'no-cache',
'Authorization':"<MY_TOKEN>",
}
})
.then(res=>console.log(res))
.catch(err=>console.log(err))