Generic OAuth
The Generic OAuth plugin provides a flexible way to integrate authentication with any OAuth provider. It supports both OAuth 2.0 and OpenID Connect (OIDC) flows, allowing you to easily add social login or custom OAuth authentication to your application.
Installation
Add the plugin to your auth config
To use the Generic OAuth plugin, add it to your auth config.
Add the client plugin
Include the Generic OAuth client plugin in your authentication client instance.
Usage
The Generic OAuth plugin provides endpoints for initiating the OAuth flow and handling the callback. Here's how to use them:
Initiate OAuth Sign-In
To start the OAuth sign-in process:
Handle OAuth Callback
The plugin mounts a route to handle the OAuth callback /oauth2/callback/:providerId
. This means by default ${baseURL}/api/auth/oauth2/callback/:providerId
will be used as the callback URL. Make sure your OAuth provider is configured to use this URL.
Configuration
When adding the plugin to your auth config, you can configure multiple OAuth providers. Each provider configuration object supports the following options:
providerId
: A unique identifier for the OAuth provider.discoveryUrl
: URL to fetch OAuth 2.0 configuration (optional, but recommended for OIDC providers).type
: Type of OAuth flow ("oauth2" or "oidc", defaults to "oauth2").authorizationUrl
: URL for the authorization endpoint (optional if using discoveryUrl).tokenUrl
: URL for the token endpoint (optional if using discoveryUrl).userInfoUrl
: URL for the user info endpoint (optional if using discoveryUrl).clientId
: OAuth client ID.clientSecret
: OAuth client secret.scopes
: Array of OAuth scopes to request.redirectURI
: Custom redirect URI (optional).responseType
: OAuth response type (defaults to "code").prompt
: Controls the authentication experience for the user.pkce
: Whether to use PKCE (Proof Key for Code Exchange, defaults to false).accessType
: Access type for the authorization request.getUserInfo
: Custom function to fetch user info (optional).
Advanced Usage
Custom User Info Fetching
You can provide a custom getUserInfo
function to handle specific provider requirements:
Map User Info Fields
If the user info returned by the provider does not match the expected format, or you need to map additional fields, you can use the mapProfileToUser
:
Error Handling
The plugin includes built-in error handling for common OAuth issues. Errors are typically redirected to your application's error page with an appropriate error message in the URL parameters. If the callback URL is not provided, the user will be redirected to Better Auth's default error page.