Skip to content

Instantly share code, notes, and snippets.

@joostd
Last active June 12, 2020 06:55
Show Gist options
  • Save joostd/741c40e10b9b75ab3788ec17b7388a18 to your computer and use it in GitHub Desktop.
Save joostd/741c40e10b9b75ab3788ec17b7388a18 to your computer and use it in GitHub Desktop.
Modified openid connect configuration for including email claim
{
"issuer": "https://connect.test.surfconext.nl",
"authorization_endpoint": "https://connect.test.surfconext.nl/oidc/authorize?response_mode=query&claims=%7B%22id_token%22%3A%7B%22email%22%3Anull%7D%7D",
"token_endpoint": "https://connect.test.surfconext.nl/oidc/token",
"userinfo_endpoint": "https://connect.test.surfconext.nl/oidc/userinfo",
"introspect_endpoint": "https://connect.test.surfconext.nl/oidc/introspect",
"jwks_uri": "https://connect.test.surfconext.nl/oidc/certs",
"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": [
"authorization_code",
"implicit",
"refresh_token",
"client_credentials"
],
"subject_types_supported": [
"public",
"pairwise"
],
"id_token_signing_alg_values_supported": [
"RS256"
],
"scopes_supported": [
"openid",
"groups",
"profile",
"email",
"address",
"phone"
],
"token_endpoint_auth_methods_supported": [
"client_secret_post",
"client_secret_basic"
],
"claims_supported": [
"aud",
"nbf",
"iss",
"exp",
"iat",
"jti",
"nonce",
"at_hash",
"c_hash",
"s_hash",
"at_hash",
"auth_time",
"sub",
"edumember_is_member_of",
"eduperson_affiliation",
"eduperson_entitlement",
"eduperson_principal_name",
"eduperson_scoped_affiliation",
"email",
"email_verified",
"family_name",
"given_name",
"name",
"nickname",
"preferred_username",
"schac_home_organization",
"schac_home_organization_type",
"schac_personal_unique_code",
"eduperson_orcid",
"eckid",
"surf-crm-id",
"uids"
],
"claims_parameter_supported": true,
"request_parameter_supported": true,
"request_uri_parameter_supported": true,
"acr_values_supported": [
"http://test.surfconext.nl/assurance/loa1",
"http://test.surfconext.nl/assurance/loa2",
"http://test.surfconext.nl/assurance/loa3"
],
"code_challenge_methods_supported": [
"plain",
"S256"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment