跳至内容
从 NextAuth.js v4 迁移?阅读 我们的迁移指南.

Auth0 提供者

资源

设置

回调 URL

https://example.com/api/auth/callback/auth0

环境变量

AUTH_AUTH0_ID
AUTH_AUTH0_SECRET

配置

/auth.ts
import NextAuth from "next-auth"
import Auth0 from "next-auth/providers/auth0"
 
export const { handlers, auth, signIn, signOut } = NextAuth({
  providers: [Auth0],
})
Auth.js © Balázs Orbán 和团队 -2024