Hi @Manuel T , Entra External ID does not provide the same direct configuration options for session and token lifetimes as Azure AD B2C but you can manage these settings in other ways.
Entra External ID does not expose token lifetime settings directly in the portal. Instead, you can manage session and token lifetimes using Sign-In Frequency (SIF) and Continuous Access Evaluation (CAE). These mechanisms allow you to control how often users need to re-authenticate and how tokens are validated in real-time.
- https://learn.microsoft.com/en-us/entra/identity/conditional-access/concept-continuous-access-evaluation
- https://learn.microsoft.com/en-us/entra/identity/conditional-access/howto-conditional-access-session-lifetime
For adjusting the refresh token lifetime, you should use Sign-In Frequency (SIF). This setting can be configured to specify how often users need to sign in again.
Continuous Access Evaluation (CAE) is recommended for applications that require token agility. CAE allows tokens to be validated in real-time, ensuring that any changes in user access or security policies are immediately enforced. This approach helps maintain security and compliance without the need for frequent token refreshes.
If you need to set specific token lifetimes, you can use PowerShell or REST APIs to configure these settings.
Please let me know if you have any questions and I can help you further.
If this answer helps you please mark "Accept Answer" so other users can reference it.
Thank you,
James