Class OIDCProviderConfigurationRequest
java.lang.Object
com.nimbusds.oauth2.sdk.AbstractRequest
com.nimbusds.oauth2.sdk.AbstractConfigurationRequest
com.nimbusds.openid.connect.sdk.op.OIDCProviderConfigurationRequest
OpenID Provider (OP) configuration request.
Example HTTP request:
GET /.well-known/openid-configuration HTTP/1.1 Host: example.com
Related specifications:
- OpenID Connect Discovery 1.0, section 4.1.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The well-known path for OpenID Provider metadata. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new OpenID Provider configuration request using thepostfix well-known path composition strategy
.OIDCProviderConfigurationRequest
(Issuer issuer, WellKnownPathComposeStrategy strategy) Creates a new OpenID Provider configuration request. -
Method Summary
Methods inherited from class com.nimbusds.oauth2.sdk.AbstractConfigurationRequest
toHTTPRequest
Methods inherited from class com.nimbusds.oauth2.sdk.AbstractRequest
getEndpointURI
-
Field Details
-
OPENID_PROVIDER_WELL_KNOWN_PATH
The well-known path for OpenID Provider metadata.- See Also:
-
-
Constructor Details
-
OIDCProviderConfigurationRequest
Creates a new OpenID Provider configuration request using thepostfix well-known path composition strategy
.- Parameters:
issuer
- The issuer. Must represent a valid URL.
-
OIDCProviderConfigurationRequest
Creates a new OpenID Provider configuration request.- Parameters:
issuer
- The issuer. Must represent a valid URL.strategy
- The well-known path composition strategy. Must not benull
.
-