Add iat to JWT passed to CIBA HttpAuthenticationChannel (#21280)
Closes #21283
This commit is contained in:
parent
51a9712e59
commit
b336732251
1 changed files with 1 additions and 0 deletions
|
@ -103,6 +103,7 @@ public class HttpAuthenticationChannelProvider implements AuthenticationChannelP
|
|||
bearerToken.id(request.getAuthResultId());
|
||||
bearerToken.issuedFor(client.getClientId());
|
||||
bearerToken.audience(request.getIssuer());
|
||||
bearerToken.iat(request.getIat());
|
||||
bearerToken.exp(request.getExp());
|
||||
bearerToken.subject(request.getSubject());
|
||||
|
||||
|
|
Loading…
Reference in a new issue