-
Notifications
You must be signed in to change notification settings - Fork 7
OIDC.UserInfo
Scott Cantor edited this page Feb 19, 2021
·
8 revisions
The OIDC.UserInfo profile configuration bean enables support for oidc userinfo endpoint.
File(s): conf/relying-party.xml
The following example enables this profile for clients to access it in this server's /idp/profile/oidc/userinfo -endpoint. This example must be applied in the conf/relying-party.xml.
<bean id="shibboleth.DefaultRelyingParty" p:responderIdLookupStrategy-ref="profileResponderIdLookupFunction" parent="RelyingParty">
<property name="profileConfigurations">
<list>
...
<bean parent="OIDC.UserInfo"/>
...
</list>
</property>
</bean>
(Migrated)