You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the sample tenant provided I am able to get an access token and a refresh token.
The access token expires in one hour and the refresh token in 14 days.
If I try to open the Tasks page after the access token has expired, I am redirected to the b2clogin page, and a completely new access and refresh token are being retrieved.
This sounds different than what I expect after reading this.
I am expecting AcquireTokenSilent to use the refresh token to retrieve a new access token in the background.
Let me know if this is a problem with the sample or an issue with the library.
The text was updated successfully, but these errors were encountered:
// ASP.NET web host compatible cookie managerCookieManager=newSystemWebCookieManager(),UseTokenLifetime=false
When you say token lifetime, it doesn't specify if it is the access token lifetime or the refresh token lifetime when it is present. And I am guessing this case is not handled by the OpenIdConnectAuthentication middleware.
Using the sample tenant provided I am able to get an access token and a refresh token.
The access token expires in one hour and the refresh token in 14 days.
If I try to open the Tasks page after the access token has expired, I am redirected to the b2clogin page, and a completely new access and refresh token are being retrieved.
This sounds different than what I expect after reading this.
I am expecting AcquireTokenSilent to use the refresh token to retrieve a new access token in the background.
Let me know if this is a problem with the sample or an issue with the library.
The text was updated successfully, but these errors were encountered: