We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Basiclly I wounder if there is a way to insert the config of a older request in a new one?
For example:
apiClient.addAsyncResponseTransform(async (response) => { console.log("Response after request: ", response); const prevRequest = response?.config; if (response.data.status == "expiredToken" && response.status === 403 && !prevRequest?.sent) { prevRequest.sent = true; const newAccessTokenResponse = await apiClient.get("/refresh"); const newAccessToken = newAccessTokenResponse.data.accessToken; prevRequest.headers["authorization"] = "Bearer " + newAccessToken; **--> // MAKE NEW REQUEST HERE WITH SAME CONFIG AS OLD ONE? apiConfig.config(prevRequest) or something?** } });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Basiclly I wounder if there is a way to insert the config of a older request in a new one?
For example:
The text was updated successfully, but these errors were encountered: