Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit 5d33f44

Browse files
committed
Fix misconfigured redirect-uri in sparklr2 sample
1 parent 2732a09 commit 5d33f44

File tree

1 file changed

+1
-1
lines changed
  • samples/oauth2/sparklr/src/main/java/org/springframework/security/oauth/examples/sparklr/config

1 file changed

+1
-1
lines changed

samples/oauth2/sparklr/src/main/java/org/springframework/security/oauth/examples/sparklr/config/OAuth2ServerConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
131131
.authorizedGrantTypes("authorization_code", "client_credentials")
132132
.authorities("ROLE_CLIENT")
133133
.scopes("read", "trust")
134-
.redirectUris("https://anywhere?key=value")
134+
.redirectUris("http://localhost:8080/tonr2/sparklr/photos")
135135
.and()
136136
.withClient("my-trusted-client")
137137
.authorizedGrantTypes("password", "authorization_code", "refresh_token", "implicit")

0 commit comments

Comments
 (0)