Files
server/bitwarden_license/test/Sso.IntegrationTest/openid-configuration.json
Ike 192ef1be4f [PM-36568] Disable Pushed Authorization Request endpoint in Identity and SSO (#7585)
* fix: update SSO well-known endpoint and test

* fix: update identity well-known endpoint and test

* chore: formatting
2026-05-05 19:41:29 -04:00

90 lines
2.6 KiB
JSON

{
"issuer": "http://localhost",
"jwks_uri": "http://localhost:51822/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://localhost:51822/connect/authorize",
"token_endpoint": "http://localhost:51822/connect/token",
"userinfo_endpoint": "http://localhost:51822/connect/userinfo",
"end_session_endpoint": "http://localhost:51822/connect/endsession",
"check_session_iframe": "http://localhost/connect/checksession",
"revocation_endpoint": "http://localhost:51822/connect/revocation",
"introspection_endpoint": "http://localhost:51822/connect/introspect",
"device_authorization_endpoint": "http://localhost:51822/connect/deviceauthorization",
"backchannel_authentication_endpoint": "http://localhost:51822/connect/ciba",
"frontchannel_logout_supported": true,
"frontchannel_logout_session_supported": true,
"backchannel_logout_supported": true,
"backchannel_logout_session_supported": true,
"scopes_supported": ["openid", "profile", "offline_access"],
"claims_supported": [
"sub",
"name",
"family_name",
"given_name",
"middle_name",
"nickname",
"preferred_username",
"profile",
"picture",
"website",
"gender",
"birthdate",
"zoneinfo",
"locale",
"updated_at"
],
"grant_types_supported": [
"authorization_code",
"client_credentials",
"refresh_token",
"implicit",
"urn:ietf:params:oauth:grant-type:device_code",
"urn:openid:params:grant-type:ciba"
],
"response_types_supported": [
"code",
"token",
"id_token",
"id_token token",
"code id_token",
"code token",
"code id_token token"
],
"response_modes_supported": ["form_post", "query", "fragment"],
"token_endpoint_auth_methods_supported": [
"client_secret_basic",
"client_secret_post"
],
"id_token_signing_alg_values_supported": ["RS256"],
"userinfo_signing_alg_values_supported": ["RS256"],
"introspection_signing_alg_values_supported": ["RS256"],
"subject_types_supported": ["public"],
"code_challenge_methods_supported": ["plain", "S256"],
"request_parameter_supported": true,
"request_object_signing_alg_values_supported": [
"RS256",
"RS384",
"RS512",
"PS256",
"PS384",
"PS512",
"ES256",
"ES384",
"ES512"
],
"prompt_values_supported": ["none", "login", "consent", "select_account"],
"authorization_response_iss_parameter_supported": true,
"backchannel_token_delivery_modes_supported": ["poll"],
"backchannel_user_code_parameter_supported": true,
"dpop_signing_alg_values_supported": [
"RS256",
"RS384",
"RS512",
"PS256",
"PS384",
"PS512",
"ES256",
"ES384",
"ES512"
]
}