remove /auth from Keycloak token URL

This commit is contained in:
El. Abdellah
2022-04-22 11:58:12 +02:00
committed by GitHub
parent 9fc03b6985
commit 764736c493

View File

@@ -67,7 +67,7 @@ class KeycloakBearerUserProvider implements UserProviderInterface
'base_uri' => $this->issuer,
]);
$response = $client->post('/auth/realms/'.$this->realm.'/protocol/openid-connect/token/introspect', [
$response = $client->post('/realms/'.$this->realm.'/protocol/openid-connect/token/introspect', [
'auth' => [$this->client_id, $this->client_secret],
'form_params' => [
'token' => $accessToken,