We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e94998 commit 4c1440bCopy full SHA for 4c1440b
src/Http/Controllers/IntrospectionController.php
@@ -104,8 +104,8 @@ public function introspectToken(ServerRequestInterface $request)
104
'exp' => intval($token->getClaim('exp')),
105
'iat' => intval($token->getClaim('iat')),
106
'nbf' => intval($token->getClaim('nbf')),
107
- 'sub' => intval($token->getClaim('sub')),
108
- 'aud' => intval($token->getClaim('aud')),
+ 'sub' => $token->getClaim('sub'),
+ 'aud' => $token->getClaim('aud'),
109
'jti' => $token->getClaim('jti'),
110
]);
111
} catch (OAuthServerException $oAuthServerException) {
0 commit comments