Skip to content

OIDC.UserInfo

Scott Cantor edited this page Feb 19, 2021 · 8 revisions

Overview

The OIDC.UserInfo profile configuration bean enables support for oidc userinfo endpoint.

File(s): conf/relying-party.xml

Activation

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)