Sergio Solorzano
Sergio Solorzano

Reputation: 665

What does this third Azure Token lifetime refer to?

I get idtoken, access and refresh tokens lifetimes, what is the final lifetime input in Tokens refers to?

enter image description here thank you

Upvotes: 1

Views: 88

Answers (1)

Tony Ju
Tony Ju

Reputation: 15629

It is the sliding window lifetime to your refresh token. After this time period elapses the user is forced to re-authenticate, irrespective of the validity period of the most recent refresh token acquired by the app.

enter image description here

Reference:

https://learn.microsoft.com/en-us/azure/active-directory-b2c/custom-policy-manage-sso-and-token-config

Upvotes: 2

Related Questions