Description

Queries oesectool/conf/oesectool-oauth2.properties to get the configuration property and returns the properties in JSON format. Key names start with the config. prefix.

For more information on oesectool-oauth2.properties, see the oesectool/conf/oesectool-oauth2.properties.README file.

HTTP Operation

GET

URL

http[s]://hostname:port/configuration/.well-known/openid-configuration

Example

http://localhost:8888/configuration/.well-known/openid-configuration

Result

{
"issuer":"https://localhost:9999",
"authorization_endpoint":"",
"token_endpoint":"https://localhost:9999/jwt",
"userinfo_endpoint":"https://localhost:9999/userinfo",
"registration_endpoint":"",
"introspection_endpoint":"https://localhost:9999/introspect",
"revocation_endpoint":"",
"jwks_uri":"https://localhost:9999/keys",
"id_token_signing_alg_values_supported":["RS256"]
}