resource registration returned the wrong URL

pull/618/head
Justin Richer 2014-06-09 17:41:01 -04:00
parent b81e8e7ed5
commit f15b4a0f74
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ public class ProtectedResourceRegistrationEndpoint {
OAuth2AuthenticationDetails details = (OAuth2AuthenticationDetails) auth.getDetails();
OAuth2AccessTokenEntity token = tokenService.readAccessToken(details.getTokenValue());
RegisteredClient registered = new RegisteredClient(savedClient, token.getValue(), config.getIssuer() + "register/" + UriUtils.encodePathSegment(savedClient.getClientId(), "UTF-8"));
RegisteredClient registered = new RegisteredClient(savedClient, token.getValue(), config.getIssuer() + "resource/" + UriUtils.encodePathSegment(savedClient.getClientId(), "UTF-8"));
// send it all out to the view
m.addAttribute("client", registered);