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