I'm using auth0/angular2-jwt pakage for handling JWT Token Based authentication in Angular6 Application. if we gave valid token isTokenExpired function always returns false
The below code i have tried:
localStorage.setItem('id_token', response['token']);
const helper = new JwtHelperService();
helper.isTokenExpired(localStorage.getItem('id_token')
And
constructor(
private http: Http,
private helper: JwtHelperService
) {
}
public handleResponse(response: Response){
localStorage.setItem('id_token', response['token']);
console.log(this.helper.isTokenExpired(localStorage.getItem('id_token')));
}
i have tried above two methods its always return false
Thanks in Advance.
You should use { tokenNotExpired } 'angular2-jwt'; You will need following implementation:
Inside your app.module.ts
and Inside your service where you need to check if toker is expired or not: