Skip to content

Commit fd07dc1

Browse files
committed
Adds option proxy.openid.userinfo-endpoint for IdPs that delivers claims through UserInfo endpoint.
1 parent 7e1a106 commit fd07dc1

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main/java/eu/openanalytics/containerproxy/auth/impl/OpenIDAuthenticationBackend.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ protected ClientRegistrationRepository createClientRepo() {
193193
.jwkSetUri(environment.getProperty("proxy.openid.jwks-url"))
194194
.clientId(environment.getProperty("proxy.openid.client-id"))
195195
.clientSecret(environment.getProperty("proxy.openid.client-secret"))
196+
.userInfoUri(environment.getProperty("proxy.openid.userinfo-endpoint"))
196197
.build();
197198

198199
return new InMemoryClientRegistrationRepository(Collections.singletonList(client));

0 commit comments

Comments
 (0)