Twitch 提供商
资源
设置
回调 URL
https://example.com/api/auth/callback/twitch
环境变量
AUTH_TWITCH_ID
AUTH_TWITCH_SECRET
配置
/auth.ts
import NextAuth from "next-auth"
import Twitch from "next-auth/providers/twitch"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Twitch],
})
备注
- 如果添加多个重定向 URI,Twitch 将重定向到第一个重定向 URI。