fixed typo in form handling in introspecting filter

pull/263/merge
Justin Richer 12 years ago
parent 7269700dc6
commit 19e91e9272

@ -113,7 +113,7 @@ public class IntrospectingTokenService implements ResourceServerTokenServices {
MultiValueMap<String, String> form = new LinkedMultiValueMap<String, String>(); MultiValueMap<String, String> form = new LinkedMultiValueMap<String, String>();
form.add("token",accessToken); form.add("token",accessToken);
form.add("client_id", this.clientId); form.add("client_id", this.clientId);
form.add("client_scret", this.clientSecret); form.add("client_secret", this.clientSecret);
try { try {
validatedToken = restTemplate.postForObject(introspectionUrl, form, String.class); validatedToken = restTemplate.postForObject(introspectionUrl, form, String.class);

Loading…
Cancel
Save