Closed
Description
this.oAuthService.configure(this.ntAuthConfig);
this.oAuthService.tokenValidationHandler = new JwksValidationHandler();
this.oAuthService.setupAutomaticSilentRefresh();
this.oAuthService.loadDiscoveryDocumentAndLogin();
once get token, setupAutomaticSilentRefresh works well
but after refresh the page, seems like counter is reset as start from 0
for example, set access token expires 5 mins. and login then 70% of 5mins will refresh token right?
Let us say 60% time spent and refresh the page, then after 3mins again will try to refresh the token.
so that the time between when I refresh and reach the 70% will be expired.
when the user refresh the page, do we need to refresh access_token? or use same token?
if yes, how to fetch new access token when the user refresh the page?