Expand description
Built-in provider presets — preconfigured OAuth2Providers for
the providers we get asked about most.
Each function takes only the per-app credentials (client_id,
client_secret, redirect_uri) and returns a fully wired provider
with the right endpoints, scopes, and a userinfo mapper that handles
the provider’s response shape.
Don’t see your provider? Either:
- Use
OAuth2Provider::from_discoveryfor any OIDC provider, or - Build one with
OAuth2Provider::new+OAuth2Provider::with_user_mapper.