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
RuleSet with the given ID was successfully returned.
{
"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"
],
"revocation_endpoint": "string"
}
The identifier of the token's issuer. This is identical to the 'iss' Claim value in ID tokens.
The URL of the OAuth 2.0 Authorization endpoint
The URL of the OAuth 2.0 Token endpoint
The URL of JSON Web Key Set document
A list of the Subject identifier types that VMware Identity Manager supports
A list of the OAuth 2.0 response_type values that VMware Identity Manager supports
A list of the JWS signing algorithms supported for the ID Token to encode the Claims in a JWT
A list of the auth methods supported by OAuth 2.0 token endpoint
The URL of the user info endpoint
The URL at the OP to which an RP can perform a redirect to request that the end-user be logged out at the OP
A 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.
A list of the OAuth 2.0 scope values that VMware Identity Manager supports
The URL of the OAuth 2.0 revocation endpoint