client-jwt authentication fails on Token Introspection Endpoint

closes #30599

Signed-off-by: Takashi Norimatsu <takashi.norimatsu.ws@hitachi.com>
This commit is contained in:
Takashi Norimatsu 2024-06-20 13:02:56 +09:00 committed by Marek Posolda
parent 0ce778061c
commit 6b135ff6e7
2 changed files with 8 additions and 3 deletions

View file

@ -199,8 +199,9 @@ public class JWTClientAuthenticator extends AbstractClientAuthenticator {
private List<String> getExpectedAudiences(ClientAuthenticationFlowContext context, RealmModel realm) {
String issuerUrl = Urls.realmIssuer(context.getUriInfo().getBaseUri(), realm.getName());
String tokenUrl = OIDCLoginProtocolService.tokenUrl(context.getUriInfo().getBaseUriBuilder()).build(realm.getName()).toString();
String tokenIntrospectUrl = OIDCLoginProtocolService.tokenIntrospectionUrl(context.getUriInfo().getBaseUriBuilder()).build(realm.getName()).toString();
String parEndpointUrl = ParEndpoint.parUrl(context.getUriInfo().getBaseUriBuilder()).build(realm.getName()).toString();
List<String> expectedAudiences = new ArrayList<>(Arrays.asList(issuerUrl, tokenUrl, parEndpointUrl));
List<String> expectedAudiences = new ArrayList<>(Arrays.asList(issuerUrl, tokenUrl, tokenIntrospectUrl, parEndpointUrl));
String backchannelAuthenticationUrl = CibaGrantType.authorizationUrl(context.getUriInfo().getBaseUriBuilder()).build(realm.getName()).toString();
expectedAudiences.add(backchannelAuthenticationUrl);

View file

@ -573,6 +573,10 @@ public class ClientAuthSignedJWTTest extends AbstractClientAuthSignedJWTTest {
testEndpointAsAudience(oauth.getBackchannelAuthenticationUrl());
}
@Test
public void testTokenIntrospectionEndpointAsAudience() throws Exception {
testEndpointAsAudience(oauth.getTokenIntrospectionUrl());
}
@Test
public void testInvalidAudience() throws Exception {
ClientRepresentation clientRepresentation = app2;