docs(options): fix redirectURI casing in socialProviders examples (#5156)

This commit is contained in:
Edi Simetzberger
2025-10-09 17:51:53 +02:00
committed by GitHub
parent 9a1bcb3339
commit 72d63b6e0f

View File

@@ -220,12 +220,12 @@ export const auth = betterAuth({
google: {
clientId: "your-client-id",
clientSecret: "your-client-secret",
redirectUri: "https://example.com/api/auth/callback/google"
redirectURI: "https://example.com/api/auth/callback/google"
},
github: {
clientId: "your-client-id",
clientSecret: "your-client-secret",
redirectUri: "https://example.com/api/auth/callback/github"
redirectURI: "https://example.com/api/auth/callback/github"
}
},
})