Get Openid Configuration

Get Openid Configuration
OpenID Connect discovery endpoint

Use this API instead:

  • /oidc/.well-known/openid-configuration

Get discovery endpoint meta data as described in https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata. OpenID Connect 1.0 is a simple identity layer on top of the OAuth 2.0 protocol. It enables Clients to verify the identity of the End-User based on the authentication performed by an Authorization Server, as well as to obtain basic profile information about the End-User in an interoperable and REST-like manner.

Access Policy

Role Access
Anonymous ✔️
Request
URI
GET
https://vcfa-10-162-161-9.vcfd.broadcom.net/.well-known/openid-configuration
COPY
Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns OpenidConfigurationResponse of type(s) */*
{
    "issuer": "string",
    "authorization_endpoint": "string",
    "token_endpoint": "string",
    "token_endpoint_auth_methods_supported": [
        "string"
    ],
    "jwks_uri": "string",
    "userinfo_endpoint": "string",
    "response_types_supported": [
        "string"
    ],
    "grant_types_supported": [
        "string"
    ],
    "subject_types_supported": [
        "string"
    ],
    "id_token_signing_alg_values_supported": [
        "string"
    ],
    "scopes_supported": [
        "string"
    ]
}

404

The requested resource could not be found.

Returns OpenidConfigurationResponse of type(s) */*
{
    "issuer": "string",
    "authorization_endpoint": "string",
    "token_endpoint": "string",
    "token_endpoint_auth_methods_supported": [
        "string"
    ],
    "jwks_uri": "string",
    "userinfo_endpoint": "string",
    "response_types_supported": [
        "string"
    ],
    "grant_types_supported": [
        "string"
    ],
    "subject_types_supported": [
        "string"
    ],
    "id_token_signing_alg_values_supported": [
        "string"
    ],
    "scopes_supported": [
        "string"
    ]
}

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/.well-known/openid-configuration
                
Deprecated
Openid Configuration Controller Operations
GET
Get Openid Configuration
Deprecated