send clientId as aud

This commit is contained in:
Bence Pőcze 2023-04-12 02:05:44 +02:00
parent 6af7813e3d
commit eb4ebb9582
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

View File

@ -59,6 +59,7 @@ class OAuthController
'iat' => (int)$token->getCreatedDate()->getTimestamp(),
'nbf' => (int)$token->getCreatedDate()->getTimestamp(),
'exp' => (int)$token->getExpiresDate()->getTimestamp(),
'aud' => $clientId,
'nonce' => $token->getNonce()
], $this->getUserInfoInternal(
$this->userRepository->getById($token->getUserId()),