We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1a106 commit fd07dc1Copy full SHA for fd07dc1
1 file changed
src/main/java/eu/openanalytics/containerproxy/auth/impl/OpenIDAuthenticationBackend.java
@@ -193,6 +193,7 @@ protected ClientRegistrationRepository createClientRepo() {
193
.jwkSetUri(environment.getProperty("proxy.openid.jwks-url"))
194
.clientId(environment.getProperty("proxy.openid.client-id"))
195
.clientSecret(environment.getProperty("proxy.openid.client-secret"))
196
+ .userInfoUri(environment.getProperty("proxy.openid.userinfo-endpoint"))
197
.build();
198
199
return new InMemoryClientRegistrationRepository(Collections.singletonList(client));
0 commit comments