You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In
/oauth2-server-php/src/OAuth2/OpenID/Controller/AuthorizeController.php
in the validateAuthorizeRequest function is the call to $nonce = $request->query('nonce');
If you are using POST to send your request to the OP, then the function will fail to grab the nonce for use in the Id Token. Needs to be changed to:
``$nonce = $request->request('nonce');`
The text was updated successfully, but these errors were encountered:
In
/oauth2-server-php/src/OAuth2/OpenID/Controller/AuthorizeController.php
in the validateAuthorizeRequest function is the call to
$nonce = $request->query('nonce');
If you are using POST to send your request to the OP, then the function will fail to grab the nonce for use in the Id Token. Needs to be changed to:
``$nonce = $request->request('nonce');`
The text was updated successfully, but these errors were encountered: