curl -s http://localhost:8080/.well-known/openid-configuration

From wikieduonline
Jump to navigation Jump to search

curl -s http://localhost:8080/.well-known/openid-configuration | jq
{
 "issuer": "http://localhost:8080",
 "token_endpoint": "http://localhost:8080/token",
 "authorization_endpoint": "http://localhost:8080/authorize",
 "userinfo_endpoint": "http://localhost:8080/userinfo",
 "token_endpoint_auth_methods_supported": [
   "none"
 ],
 "jwks_uri": "http://localhost:8080/jwks",
 "response_types_supported": [
   "code"
 ],
 "grant_types_supported": [
   "client_credentials",
   "authorization_code",
   "password"
 ],
 "token_endpoint_auth_signing_alg_values_supported": [
   "RS256"
 ],
 "response_modes_supported": [
   "query"
 ],
 "id_token_signing_alg_values_supported": [
   "RS256"
 ],
 "revocation_endpoint": "http://localhost:8080/revoke"
}

Related[edit]

curl -s http://localhost:8080/jwks | jq

See also[edit]

Advertising: