Created
May 23, 2018 02:02
-
-
Save kukat/ec81476a6e8c988d4ecff666ec48728d to your computer and use it in GitHub Desktop.
PingFederate OIDC Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "3.0", | |
"issuer": "https://localhost:9031", | |
"authorization_endpoint": "https://localhost:9031/as/authorization.oauth2", | |
"token_endpoint": "https://localhost:9031/as/token.oauth2", | |
"revocation_endpoint": "https://localhost:9031/as/revoke_token.oauth2", | |
"userinfo_endpoint": "https://localhost:9031/idp/userinfo.openid", | |
"introspection_endpoint": "https://localhost:9031/as/introspect.oauth2", | |
"jwks_uri": "https://localhost:9031/pf/JWKS", | |
"registration_endpoint": "https://localhost:9031/as/clients.oauth2", | |
"ping_revoked_sris_endpoint": "https://localhost:9031/pf-ws/rest/sessionMgmt/revokedSris", | |
"ping_end_session_endpoint": "https://localhost:9031/idp/startSLO.ping", | |
"scopes_supported": [ | |
"openid", | |
"profile" | |
], | |
"response_types_supported": [ | |
"code", | |
"token", | |
"id_token", | |
"code token", | |
"code id_token", | |
"token id_token", | |
"code token id_token" | |
], | |
"response_modes_supported": [ | |
"fragment", | |
"query", | |
"form_post" | |
], | |
"grant_types_supported": [ | |
"implicit", | |
"authorization_code", | |
"refresh_token", | |
"password", | |
"client_credentials", | |
"urn:pingidentity.com:oauth2:grant_type:validate_bearer", | |
"urn:ietf:params:oauth:grant-type:jwt-bearer", | |
"urn:ietf:params:oauth:grant-type:saml2-bearer" | |
], | |
"subject_types_supported": [ | |
"public" | |
], | |
"id_token_signing_alg_values_supported": [ | |
"none", | |
"HS256", | |
"HS384", | |
"HS512", | |
"RS256", | |
"RS384", | |
"RS512", | |
"ES256", | |
"ES384", | |
"ES512" | |
], | |
"token_endpoint_auth_methods_supported": [ | |
"client_secret_basic", | |
"client_secret_post", | |
"private_key_jwt" | |
], | |
"token_endpoint_auth_signing_alg_values_supported": [ | |
"RS256", | |
"RS384", | |
"RS512", | |
"ES256", | |
"ES384", | |
"ES512" | |
], | |
"claim_types_supported": [ | |
"normal" | |
], | |
"claims_parameter_supported": false, | |
"request_parameter_supported": true, | |
"request_uri_parameter_supported": false, | |
"request_object_signing_alg_values_supported": [ | |
"RS256", | |
"RS384", | |
"RS512", | |
"ES256", | |
"ES384", | |
"ES512" | |
], | |
"request_object_encryption_alg_values_supported": [], | |
"request_object_encryption_enc_values_supported": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment