Get Get Open ID Configuration
This endpoint follows the specification defined at http://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata. It provides a mechanism for an OpenID Connect Relying Party to discover the End-User's OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations.
successful operation
{
"userinfo_endpoint": "https://acme.vmwareidentity.com/SAAS/jersey/manager/api/userinfo",
"jwks_uri": "https://acme.vmwareidentity.com/SAAS/API/1.0/REST/auth/token?attribute=publicKey&format=jwks",
"scopes_supported": [
"string"
],
"subject_types_supported": [
"string"
],
"token_endpoint": "https://acme.vmwareidentity.com/SAAS/auth/oauthtoken",
"id_token_signing_alg_values_supported": [
"string"
],
"response_types_supported": [
"string"
],
"claims_supported": [
"string"
],
"authorization_endpoint": "https://acme.vmwareidentity.com/SAAS/auth/oauth2/authorize",
"issuer": "https://acme.vmwareidentity.com/SAAS/auth"
}
URL of the user info endpoint
URL of JSON Web Key Set document
list of the OAuth 2.0 scope values that VMware Identity Manager supports
list of the Subject Identifier types that VMware Identity Manager supports
URL of the OAuth 2.0 token endpoint
list of the JWS signing algorithms supported for the ID Token to encode the Claims in a JWT
list of the OAuth 2.0 response_type values that VMware Identity Manager supports
list of the claims VMware Identity Manager may be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list
URL of the OAuth 2.0 authorization endpoint
the identifier of the token's issuer. This is identical to the 'iss' Claim value in ID Tokens