Refresh token automatically before sending any request
See original GitHub issuei’m using v1.1.0
i need to refresh the token if it’s expired before sending any request once or automatically
i don’t want to do it manually each time i send a request like this for example:
getSomeData(){
if(this.helper.isTokenExpired())
{
this.authService.refreshToken().subscribe(result => {
//request the requird dat with the new access token
})
}
else
{
//request the requird data
}
}
Am I doing it wrong? Is there another way to achieve that?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:6 (1 by maintainers)
Top Results From Across the Web
What Are Refresh Tokens and How to Use Them Securely
Refresh tokens are bearer tokens. It's impossible for the authorization server to know who is legitimate or malicious when receiving a new ...
Read more >Should access tokens be refreshed automatically or manually?
When the access token expires, the user will send his refresh token to the refresh/ route. The API checks if the token is...
Read more >OAuth 2.0 Refresh Token Best Practices - Fusebit
When the authorization server detects a refresh token reuse, it immediately revokes the refresh token and denies access to subsequent requests ...
Read more >What Are Refresh Tokens? When & How to Use Them
Any subsequent API requests can be made through newer refresh tokens from there onwards. If a request is made utilizing an older refresh...
Read more >Is there a downside to sending a refresh token on every ...
As you imply sending the refresh token on every request is not ideal as it increases the chance of leaking. The simplest way...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yes, write your own Http interceptor to send the JWT with all your requests, then add the logic/code in here to refresh the token (if necessary) before submitting the request.
Example:
Then in app.module.ts (note you have to import the above first as normal)
@crooksey How does this work, your refreshToken() is a callback. it doesent look like you are waiting for the token before adding it to the headers.
In any case, i am waiting for the token before adding it to my headers. But for some reason , my api call still fires before the interceptor is able to refresh the token and append it to the headers. That results in an error for me because the token is expired before the interceptors is able to refresh the token.