GenerateSaaS

Social OAuth

Render and gate one-click social sign-in buttons via config.auth.socialProviders and per-provider OAuth credentials.

config.auth.socialProviders (packages/config/src/index.ts) is the single source of truth for which social sign-in buttons render, in array order. @repo/auth registers a provider server-side only when its OAuth env vars are set, so the array and the credentials must stay in sync.

How it works

PieceLocationRole
config.auth.socialProviderspackages/config/src/index.tsProvider IDs to render. Starts empty ([]); an empty array hides the whole social block
SOCIAL_PROVIDERS_METApackages/config/src/social-providers.tsMaps each ID to its label, i18n labelKey, and required env vars
AuthSocialButtonsapps/web/components/auth/auth-social-buttons.tsxRenders one button per ID, signing in via authClient.signIn.social
Server registrationpackages/auth/src/config.tsAdds the provider to Better Auth only when both its env vars are set

An ID with no credentials renders a dead button - it exists client-side with no working backend. Removing an ID hides its button instantly, no env change needed.

Providers

Each provider needs an OAuth app from its developer console. Set both env vars or it stays unregistered.

ProviderIDEnv vars
GooglegoogleGOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET
GitHubgithubGITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET
FacebookfacebookFACEBOOK_CLIENT_ID, FACEBOOK_CLIENT_SECRET
DiscorddiscordDISCORD_CLIENT_ID, DISCORD_CLIENT_SECRET
XxTWITTER_CLIENT_ID, TWITTER_CLIENT_SECRET

.env.example seeds commented GOOGLE_* and GITHUB_* placeholders; copy the other names from this table.

Setup

Create the OAuth app in the provider's developer console and copy its client ID and secret.

Set the callback URL to <API_URL>/auth/callback/<provider> - Better Auth's baseURL is ${API_URL}/auth. With the default API_URL=http://localhost:3000/api that is http://localhost:3000/api/auth/callback/google.

Set both env vars for that provider (see the table).

Add the ID to config.auth.socialProviders so the button renders, then restart so @repo/auth re-reads the env.

For X the callback segment is twitter (<API_URL>/auth/callback/twitter), and the credentials keep the TWITTER_* prefix - Better Auth still names the underlying provider twitter.

Add a new provider

Wiring a provider end to end (linkedin as the example) touches five files, plus the labelKey in packages/i18n/translations/en/web.json under auth.social.

#FileEdit
1packages/config/src/types/app.tsAdd "linkedin" to the SocialProvider union
2packages/config/src/social-providers.tsAdd a SOCIAL_PROVIDERS_META entry (label, labelKey, envVars)
3packages/runtime/src/env.tsAdd LINKEDIN_CLIENT_ID / LINKEDIN_CLIENT_SECRET as z.string().optional()
4packages/auth/src/config.tsAdd the conditional block in socialProviders
5apps/web/components/auth/auth-social-buttons.tsxAdd the brand icon to socialProviderIcons
// packages/auth/src/config.ts - inside socialProviders
...(env.LINKEDIN_CLIENT_ID &&
  env.LINKEDIN_CLIENT_SECRET && {
    linkedin: {
      clientId: env.LINKEDIN_CLIENT_ID,
      clientSecret: env.LINKEDIN_CLIENT_SECRET
    }
  })

socialProviderIcons and SOCIAL_PROVIDERS_META are both typed Record<SocialProvider, …>, so extending the union raises a TypeScript error in each until you add the entry - your safety net against a half-wired provider.

Frequently asked questions

The button shows but sign-in fails - why? The ID is in config.auth.socialProviders but its env vars are missing or wrong, so @repo/auth never registered it. Set both *_CLIENT_ID and *_CLIENT_SECRET and restart.

How do I hide a provider? Remove its ID from config.auth.socialProviders. The button stops rendering immediately.

Why does X use a TWITTER_* prefix? The ID is x for the label, but Better Auth's underlying provider key is twitter, so credentials and the callback path keep that name.

On this page