We are using IdentityServer4 and have an issue on using refresh token.
Here is my client configs: Grant Types: client_credentials hybrid
- Access token lifetime:
- 60
- Identity token lifetime:
- 900
- Absolute refresh token lifetime:
- 240
- Sliding refresh token lifetime:
- 60
- Refresh token usage:
- OneTimeOnly
- Refresh token expiration:
- Absolute
I am checking access token life time and when it is about to be expired I use refresh token to get new access token. After 240 second the access token life time does not extension and my client goes to Identity Server and it issues new set of tokens for my client.
I want my user enter username/password after expiration the refresh token buy Identity Server issue new tokens instead of asking credential.
Any Idea?
authorize
endpoint call. See my answer regarding how to influence this behavior. – mackieprompt=login
– Ruard van Elburg