Reactjs – Is using refresh token for every api calls correct behaviour?
In my scenario, to avoid the expiration of token I decide to call the refresh token for every API calls (Adding it in the Interceptor axiosInstance.ts). I don't know whether the approach is correct or not. If it's correct where…