OpenID Connect endpoint URLs
Learn about OpenID Connect endpoint URLs available for communicating with the OpenID Connect provider.
After OpenID Connect is configured, several endpoint URLs are available on the Liberty profile so that OpenID Connect clients can communicate with the OpenID Connect provider before accessing protected resources. By default, all communications must be over Transport Layer Security (TLS).
The following endpoint URLs are available for communicating with the OpenID Connect provider:
- Authorization endpoint URL
- Token endpoint URL
- Introspection endpoint URL
- UserInfo endpoint URL
- Discovery endpoint URL
- Coverage map endpoint URL
- Registration endpoint URL
Authorization endpoint URL
https://<host_name>:<port_number>/oidc/endpoint/<provider_name>/authorize
where
- host_name
- The host name of the OpenID Connect provider.
- port_number
- The secure port number configured on the Liberty profile server.
- provider_name
- The OpenID Connect provider name.
See
Invoking the Authorization Endpoint for OpenID Connect
.
Token endpoint URL
https://<host_name>:<port_number>/oidc/endpoint/<provider_name>/token
where
- host_name
- The host name of the OpenID Connect provider.
- port_number
- The secure port number configured on the Liberty profile server.
- provider_name
- The OpenID Connect provider name.
See
Invoking the Token Endpoint for OpenID Connect
.
Introspection endpoint URL
https://<host_name>:<port_number>/oidc/endpoint/<provider_name>/introspect
where
- host_name
- The host name of the OpenID Connect provider.
- port_number
- The secure port number configured on the Liberty profile server.
- provider_name
- The OpenID Connect provider name.
See
Invoking the Introspection Endpoint for OpenID Connect
.
UserInfo endpoint URL
https://<host_name>:<port_number>/oidc/endpoint/<provider_name>/userinfo
where
- host_name
- The host name of the OpenID Connect provider.
- port_number
- The secure port number configured on the Liberty profile server.
- provider_name
- The OpenID Connect provider name.
See
Invoking the UserInfo Endpoint for OpenID Connect
.
Discovery endpoint URL
https://<host_name>:<port_number>/oidc/endpoint/<provider_name>/.well-known/openid-configuration
where
- host_name
- The host name of the OpenID Connect provider.
- port_number
- The secure port number configured on the Liberty profile server.
- provider_name
- The OpenID Connect provider name.
See
Configure an OpenID Connect Provider to accept discovery requests
.
Coverage map endpoint URL
https://<host_name>:<port_number>/oidc/endpoint/<provider_name>/coverage_map
where
- host_name
- The host name of the OpenID Connect provider.
- port_number
- The secure port number configured on the Liberty profile server.
- provider_name
- The OpenID Connect provider name.
See
Invoking the coverage map service
.
Registration endpoint URL
https://<host_name>:<port_number>/oidc/endpoint/<provider_name>/registration
where
- host_name
- The host name of the OpenID Connect provider.
- port_number
- The secure port number configured on the Liberty profile server.
- provider_name
- The OpenID Connect provider name.
See
Configure an OpenID Connect Provider to accept client registration requests
.
Parent topic: