Skip to content

Instantly share code, notes, and snippets.

@brucehoff
Created January 30, 2020 20:38
Show Gist options
  • Save brucehoff/f7470e0c6ec4806897dd8e540c6fcc31 to your computer and use it in GitHub Desktop.
Save brucehoff/f7470e0c6ec4806897dd8e540c6fcc31 to your computer and use it in GitHub Desktop.
Modified copy of the Synapse Staging Open ID Connect Configuration Document
{
"issuer": "https://repo-staging.prod.sagebase.org/auth/v1",
"authorization_endpoint": "https://staging-signin.synapse.org",
"token_endpoint": "https://repo-staging.prod.sagebase.org/auth/v1/oauth2/token",
"userinfo_endpoint": "https://repo-staging.prod.sagebase.org/auth/v1/oauth2/userinfo",
"jwks_uri": "https://repo-staging.prod.sagebase.org/auth/v1/oauth2/jwks",
"registration_endpoint": "https://repo-staging.prod.sagebase.org/auth/v1/oauth2/client",
"scopes_supported": [
"openid"
],
"response_types_supported": [
"code"
],
"grant_types_supported": [
"authorization_code"
],
"subject_types_supported": [
"pairwise"
],
"id_token_signing_alg_values_supported": [
"RS256"
],
"userinfo_signing_alg_values_supported": [
"RS256"
],
"claims_supported": [
"iss",
"sub",
"aud",
"iat",
"nbf",
"exp",
"auth_time",
"email",
"email_verified",
"given_name",
"family_name",
"company",
"team",
"userid",
"orcid",
"is_certified",
"is_validated",
"validated_given_name",
"validated_family_name",
"validated_location",
"validated_email",
"validated_company",
"validated_orcid",
"validated_at"
],
"service_documentation": "https://docs.synapse.org",
"claims_parameter_supported": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment