Get OIDC 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.
The VMware Identity Services tenant ID
my-tenant
The OpenID configuration document as defined by the specification: http://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
{
"issuer": "\"https://acme.vmwareidentity.com/acs\"",
"authorization_endpoint": "\"https://acme.vmwareidentity.com/acs/authorize\"",
"token_endpoint": "\"https://acme.vmwareidentity.com/acs/token\"",
"jwks_uri": "\"https://acme.vmwareidentity.com/SAAS/API/1.0/REST/auth/token?attribute=publicKey&format=jwks\"",
"subject_types_supported": [
"string"
],
"response_types_supported": [
"string"
],
"id_token_signing_alg_values_supported": [
"string"
],
"token_endpoint_auth_methods_supported": [
"string"
],
"userinfo_endpoint": "\"https://acme.vmwareidentity.com/acs/userinfo\"",
"end_session_endpoint": "\"https://acme.vmwareidentity.com/post_logout\"",
"claims_supported": [
"string"
],
"scopes_supported": [
"string"
]
}
the identifier of the token's issuer. This is identical to the 'iss' Claim value in ID Tokens.
URL of the OAuth 2.0 Authorization endpoint
URL of the OAuth 2.0 Token endpoint
URL of JSON Web Key Set document
list of the Subject Identifier types that VMware Identity Manager supports
list of the OAuth 2.0 response_type values that VMware Identity Manager supports
list of the JWS signing algorithms supported for the ID Token to encode the Claims in a JWT
list of the auth methods supported by OAuth 2.0 token endpoint
URL of the user info endpoint
URL at the OP to which an RP can perform a redirect to request that the End-User belogged out at the OP
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
list of the OAuth 2.0 scope values that VMware Identity Manager supports
curl -H 'Authorization: <value>' https://{api_host}/acs/t/{tenant}/.well-known/openid-configuration