Skip to content
Closed
Changes from all commits
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 docs/specification/common/identity-linking/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1018,10 +1018,10 @@ field conveys the business's value prompt to the platform (e.g.,
* **JWT grant lifetime.** JWT authorization grants **MUST** be short-lived;
the `exp` claim **SHOULD** be no more than 60 seconds after `iat`. Short
lifetimes limit the window for grant theft and replay.
* **JWT grant single-use.** Businesses **MUST** enforce single-use JWT;
a short exp narrows the replay window, but only jti tracking closes it.
* **JWT grant single-use.** Businesses **MUST** enforce single-use JWT
authorization grants by tracking the `jti` claim within the grant's
validity window.
validity window; a short `exp` narrows the replay window, but only
`jti` tracking closes it.
* **Grant relay.** Businesses **MUST NOT** store or forward JWT
authorization grants received from platforms. Grants are bearer
credentials scoped to a single audience (`aud`) and a single use.
Expand Down
Loading