Docs

Twitch

Get your Twitch Credentials

To use Twitch sign in, you need a client ID and client secret. You can get them from the Twitch Developer Portal.

Make sure to set the redirect URL to http://localhost:3000/api/auth/callback/twitch for local development. For production, you should set it to the URL of your application. If you change the base path of the auth routes, you should update the redirect URL accordingly.

Configure the provider

To configure the provider, you need to import the provider and pass it to the socialProviders option of the auth instance.

auth.ts
import { betterAuth } from "better-auth"
 
export const auth = betterAuth({
    socialProviders: { 
        twitch: { 
            clientId: process.env.TWITCH_CLIENT_ID as string, 
            clientSecret: process.env.TWITCH_CLIENT_SECRET as string, 
        }, 
    } 
})

Signin with Twitch

To signin with Twitch, you can use the signIn.social function provided by the client. The signIn function takes an object with the following properties:

  • provider: The provider to use. It should be set to twitch.
client.ts
import { createAuthClient } from "better-auth/client"
const client = createAuthClient()
 
const signin = async () => {
    const data = await client.signIn.social({
        provider: "twitch"
    })
}

On this page

Edit on GitHub