cURL
curl --request GET \ --url https://api.example.com/api/identity-providers/discover \ --header 'Authorization: Bearer <token>'
{ "authorization_endpoint": "<string>", "token_endpoint": "<string>", "issuer": "<string>", "userinfo_endpoint": "<string>", "jwks_uri": "<string>" }
Fetch and parse the OIDC well-known/openid-configuration document.
The access token received from the authorization server in the OAuth 2.0 flow.
OIDC issuer URL
Parsed OIDC discovery endpoints
Parsed OIDC discovery document.
Was this page helpful?