fixed typo in form handling in introspecting filter

pull/263/merge
Justin Richer 2013-01-25 14:04:33 -05:00
parent 7269700dc6
commit 19e91e9272
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public class IntrospectingTokenService implements ResourceServerTokenServices {
MultiValueMap<String, String> form = new LinkedMultiValueMap<String, String>();
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);