1 Commits

Author SHA1 Message Date
El. Abdellah
1b7ebc6a80 remove /auth from Keycloak Token URL 2022-04-22 11:42:07 +02:00

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,