diff --git a/openid-connect-client/src/main/java/org/mitre/oauth2/filter/IntrospectingTokenService.java b/openid-connect-client/src/main/java/org/mitre/oauth2/filter/IntrospectingTokenService.java index d43b8fdd8..284f7509b 100644 --- a/openid-connect-client/src/main/java/org/mitre/oauth2/filter/IntrospectingTokenService.java +++ b/openid-connect-client/src/main/java/org/mitre/oauth2/filter/IntrospectingTokenService.java @@ -113,7 +113,7 @@ public class IntrospectingTokenService implements ResourceServerTokenServices { MultiValueMap form = new LinkedMultiValueMap(); form.add("token",accessToken); form.add("client_id", this.clientId); - form.add("client_scret", this.clientSecret); + form.add("client_secret", this.clientSecret); try { validatedToken = restTemplate.postForObject(introspectionUrl, form, String.class);