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