Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe absoluterefreshtokenlifetime set to 0 in reference/models/client #526

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions IdentityServer/v7/docs/content/reference/models/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,16 +205,16 @@ public static IEnumerable<Client> Get()

* ***AbsoluteRefreshTokenLifetime***

Maximum lifetime of a refresh token in seconds. Defaults to 2592000 seconds / 30 days
Maximum lifetime of a refresh token in seconds. Defaults to 2592000 seconds / 30 days. Zero allows refresh tokens that, when used with RefreshTokenExpiration = Sliding only expire after the SlidingRefreshTokenLifetime is passed.

* ***SlidingRefreshTokenLifetime***

Sliding lifetime of a refresh token in seconds. Defaults to 1296000 seconds / 15 days
Sliding lifetime of a refresh token in seconds. Defaults to 1296000 seconds / 15 days.

* ***RefreshTokenUsage***
* ***ReUse***

the refresh token handle will stay the same when refreshing tokens
the refresh token handle will stay the same when refreshing tokens.

* ***OneTimeOnly***

Expand Down
Loading