Skip to content

Instantly share code, notes, and snippets.

@ghstahl
Created October 17, 2019 20:42
Show Gist options
  • Save ghstahl/7ea35ae28fec7eac49920833798d2e7f to your computer and use it in GitHub Desktop.
Save ghstahl/7ea35ae28fec7eac49920833798d2e7f to your computer and use it in GitHub Desktop.
{
"issuer": "https://accounts.google.com",
"authorization_endpoint": "https://localhost:6001/connect/authorize",
"token_endpoint": "https://localhost:6001/connect/token",
"userinfo_endpoint": "https://openidconnect.googleapis.com/v1/userinfo",
"revocation_endpoint": "https://oauth2.googleapis.com/revoke",
"jwks_uri": "https://www.googleapis.com/oauth2/v3/certs",
"response_types_supported": ["code", "token", "id_token", "code token", "code id_token", "token id_token", "code token id_token", "none"],
"subject_types_supported": ["public"],
"id_token_signing_alg_values_supported": ["RS256"],
"scopes_supported": ["openid", "email", "profile"],
"token_endpoint_auth_methods_supported": ["client_secret_post", "client_secret_basic"],
"claims_supported": ["aud", "email", "email_verified", "exp", "family_name", "given_name", "iat", "iss", "locale", "name", "picture", "sub"],
"code_challenge_methods_supported": ["plain", "S256"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment