Skip to content

Instantly share code, notes, and snippets.

@mvniekerk
Created June 14, 2020 07:46
Show Gist options
  • Save mvniekerk/bd9a11c32283a676a6bdd681187a36e6 to your computer and use it in GitHub Desktop.
Save mvniekerk/bd9a11c32283a676a6bdd681187a36e6 to your computer and use it in GitHub Desktop.
Keycloak UMA2 vs OpenID discovery return values
{
"authorization_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/auth",
"check_session_iframe": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/login-status-iframe.html",
"claim_types_supported": [
"normal"
],
"claims_parameter_supported": false,
"claims_supported": [
"aud",
"sub",
"iss",
"auth_time",
"name",
"given_name",
"family_name",
"preferred_username",
"email",
"acr"
],
"code_challenge_methods_supported": [
"plain",
"S256"
],
"end_session_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/logout",
"grant_types_supported": [
"authorization_code",
"implicit",
"refresh_token",
"password",
"client_credentials"
],
"id_token_encryption_alg_values_supported": [
"RSA-OAEP",
"RSA1_5"
],
"id_token_encryption_enc_values_supported": [
"A128GCM",
"A128CBC-HS256"
],
"id_token_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512"
],
"introspection_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/token/introspect",
"issuer": "http://localhost:8083/auth/realms/trucks",
"jwks_uri": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/certs",
"registration_endpoint": "http://localhost:8083/auth/realms/trucks/clients-registrations/openid-connect",
"request_object_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512",
"none"
],
"request_parameter_supported": true,
"request_uri_parameter_supported": true,
"response_modes_supported": [
"query",
"fragment",
"form_post"
],
"response_types_supported": [
"code",
"none",
"id_token",
"token",
"id_token token",
"code id_token",
"code token",
"code id_token token"
],
"scopes_supported": [
"openid",
"web-origins",
"microprofile-jwt",
"offline_access",
"profile",
"email",
"address",
"phone",
"roles",
"user-share"
],
"subject_types_supported": [
"public",
"pairwise"
],
"tls_client_certificate_bound_access_tokens": true,
"token_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/token",
"token_endpoint_auth_methods_supported": [
"private_key_jwt",
"client_secret_basic",
"client_secret_post",
"tls_client_auth",
"client_secret_jwt"
],
"token_endpoint_auth_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512"
],
"token_introspection_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/token/introspect",
"userinfo_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/userinfo",
"userinfo_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512",
"none"
]
}
{
"authorization_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/auth",
"end_session_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/logout",
"grant_types_supported": [
"authorization_code",
"implicit",
"refresh_token",
"password",
"client_credentials"
],
"introspection_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/token/introspect",
"issuer": "http://localhost:8083/auth/realms/trucks",
"jwks_uri": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/certs",
"permission_endpoint": "http://localhost:8083/auth/realms/trucks/authz/protection/permission",
"policy_endpoint": "http://localhost:8083/auth/realms/trucks/authz/protection/uma-policy",
"registration_endpoint": "http://localhost:8083/auth/realms/trucks/clients-registrations/openid-connect",
"resource_registration_endpoint": "http://localhost:8083/auth/realms/trucks/authz/protection/resource_set",
"response_modes_supported": [
"query",
"fragment",
"form_post"
],
"response_types_supported": [
"code",
"none",
"id_token",
"token",
"id_token token",
"code id_token",
"code token",
"code id_token token"
],
"scopes_supported": [
"openid",
"web-origins",
"microprofile-jwt",
"offline_access",
"profile",
"email",
"address",
"phone",
"roles",
"user-share"
],
"token_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/token",
"token_endpoint_auth_methods_supported": [
"private_key_jwt",
"client_secret_basic",
"client_secret_post",
"tls_client_auth",
"client_secret_jwt"
],
"token_endpoint_auth_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512"
],
"token_introspection_endpoint": "http://localhost:8083/auth/realms/trucks/protocol/openid-connect/token/introspect"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment