Patreon 提供者
资源
设置
回调 URL
https://example.com/api/auth/callback/patreon
环境变量
AUTH_PATREON_ID
AUTH_PATREON_SECRET
配置
/auth.ts
import NextAuth from "next-auth"
import Patreon from "next-auth/providers/patreon"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Patreon],
})