Skip to content

Instantly share code, notes, and snippets.

@dustinmoris
Last active January 4, 2024 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinmoris/f74636019e8fdf5a9bcf17ebb5c74dc2 to your computer and use it in GitHub Desktop.
Save dustinmoris/f74636019e8fdf5a9bcf17ebb5c74dc2 to your computer and use it in GitHub Desktop.
oidc-test.json
{
"issuer": "https://dev.openxdr.binarydefense.io/identity",
"jwks_uri": "https://dev.openxdr.binarydefense.io/identity/.well-known/openid-configuration/jwks",
"authorization_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/authorize",
"token_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/token",
"userinfo_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/userinfo",
"end_session_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/endsession",
"check_session_iframe": "https://dev.openxdr.binarydefense.io/identity/connect/checksession",
"revocation_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/revocation",
"introspection_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/introspect",
"device_authorization_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/deviceauthorization",
"backchannel_authentication_endpoint": "https://dev.openxdr.binarydefense.io/identity/connect/ciba",
"frontchannel_logout_supported": true,
"frontchannel_logout_session_supported": true,
"backchannel_logout_supported": true,
"backchannel_logout_session_supported": true,
"scopes_supported": [
"openid",
"profile",
"email",
"associations",
"permissions",
"execute",
"offline_access"
],
"claims_supported": [
"iss",
"aud",
"sub",
"name",
"family_name",
"given_name",
"middle_name",
"nickname",
"preferred_username",
"profile",
"picture",
"website",
"gender",
"birthdate",
"zoneinfo",
"locale",
"updated_at",
"email",
"email_verified",
"bds_acct",
"bds_sys_admin",
"bds_perm",
"bds_acct_perm"
],
"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"
],
"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",
"HS256",
"HS384",
"HS512"
],
"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"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment