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
does not represent the current specs on https://openid.net/specs/openid-connect-rpinitiated-1_0.html where it says, that a id_token parameter is recommended but not mandatory. This current implementation does not allow to have the redirect without a token anymore, which is wrong. The line $params['post_logout_redirect_uri'] = $params['redirect_uri']; should be outside the if statement.
The text was updated successfully, but these errors were encountered:
I think, the last changes in this implementation
oauth2-keycloak/src/Provider/Keycloak.php
Lines 160 to 169 in 34e4824
does not represent the current specs on https://openid.net/specs/openid-connect-rpinitiated-1_0.html where it says, that a id_token parameter is recommended but not mandatory. This current implementation does not allow to have the redirect without a token anymore, which is wrong. The line
$params['post_logout_redirect_uri'] = $params['redirect_uri'];
should be outside the if statement.The text was updated successfully, but these errors were encountered: