Back to Explorer

Google OAuth & OIDC endpoints

Google OAuth & OIDC endpoints and related development resources

Google OIDC discovery endpoint

https://accounts.google.com/.well-known/openid-configuration
The well-known endpoint (.well-known/openid-configuration) that provides OpenID Connect configuration metadata, including all available endpoints and supported features.

Google issuer URL

https://accounts.google.com
A unique identifier URL that identifies the OAuth/OIDC provider and is used to validate tokens

Google authorization endpoint

https://accounts.google.com/o/oauth2/v2/auth
The endpoint to redirect users to in order to grant your application access to their account.

Google token endpoint

https://oauth2.googleapis.com/token
The endpoint to exchange the authorization code or refresh token for an access token and a refresh token.

Google userinfo endpoint

https://openidconnect.googleapis.com/v1/userinfo
The standardized OAuth endpoint that returns authenticated user profile information, including claims about the current user based on the scope of access token.

Google JWKS URI

https://www.googleapis.com/oauth2/v3/certs
The URI that provides public keys for verifying JWT tokens. These keys are used to validate the authenticity of tokens issued by the authorization server.

Google revocation endpoint

https://oauth2.googleapis.com/revoke
The endpoint used to invalidate access tokens or refresh tokens before their expiration time, typically used when a user logs out or revokes application access.

Google OAuth documentation and resources