OpenIDConfiguration

OpenIDConfiguration
OpenIDConfiguration

The OpenID configuration document as defined by the specification: http://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata

JSON Example
{
    "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"
}
string
userinfo_endpoint
Optional

URL of the user info endpoint

string
jwks_uri
Required

URL of JSON Web Key Set document

array of string
scopes_supported
Optional

list of the OAuth 2.0 scope values that VMware Identity Manager supports

array of string
subject_types_supported
Required

list of the Subject Identifier types that VMware Identity Manager supports

string
token_endpoint
Required

URL of the OAuth 2.0 token endpoint

array of string
id_token_signing_alg_values_supported
Required

list of the JWS signing algorithms supported for the ID Token to encode the Claims in a JWT

array of string
response_types_supported
Required

list of the OAuth 2.0 response_type values that VMware Identity Manager supports

array of string
claims_supported
Optional

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

string
authorization_endpoint
Required

URL of the OAuth 2.0 authorization endpoint

string
issuer
Required

the identifier of the token's issuer. This is identical to the 'iss' Claim value in ID Tokens