Skip to content

Commit fe67f93

Browse files
authored
Merge pull request #4 from drupol/fix-introspection-endpoint
Fix introspection endpoint.
2 parents c77b02b + 276024b commit fe67f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service/IntrospectionService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function introspect(OpenIDClient $client, string $token, array $params =
4545
$endpointUri = get_endpoint_uri($client, 'introspection_endpoint');
4646

4747
$authMethod = $client->getAuthMethodFactory()
48-
->create($client->getMetadata()->getRevocationEndpointAuthMethod());
48+
->create($client->getMetadata()->getIntrospectionEndpointAuthMethod());
4949

5050
$tokenRequest = $this->requestFactory->createRequest('POST', $endpointUri)
5151
->withHeader('content-type', 'application/x-www-form-urlencoded');

0 commit comments

Comments
 (0)