question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Refresh token automatically before sending any request

See original GitHub issue

i’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:closed
  • Created 5 years ago
  • Reactions:2
  • Comments:6 (1 by maintainers)

github_iconTop GitHub Comments

18reactions
crookseycommented, Apr 12, 2018

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:

import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';

@Injectable()
export class JwtHttpInterceptor implements HttpInterceptor {
  constructor() {}
  intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
    const token = localStorage.getItem('rawJWT');
      let clone: HttpRequest<any>;
      if (token) {
        if (token.expired) {
            // renew token
            this.authService.refreshToken().subscribe(result => {
            token = result.token
        })
        }
        clone = request.clone({
          setHeaders: {
            Accept: `application/json`,
            'Content-Type': `application/json`,
            Authorization: `Bearer ${token}`
          }
        });
      } else {
        clone = request.clone({
          setHeaders: {
            Accept: `application/json`,
            'Content-Type': `application/json`
          }
        });
      }
      return next.handle(clone);
  }
}

Then in app.module.ts (note you have to import the above first as normal)

providers: [
    { provide: HTTP_INTERCEPTORS, useClass: JwtHttpInterceptor, multi: true },
9reactions
ghostcommented, Apr 16, 2018

@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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found