GitLab 提供者
资源
设置
回调 URL
https://example.com/api/auth/callback/gitlab
环境变量
AUTH_GITLAB_ID
AUTH_GITLAB_SECRET
配置
/auth.ts
import NextAuth from "next-auth"
import GitLab from "next-auth/providers/gitlab"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [GitLab],
})
说明
- 如果要保存用户注册时的电子邮件地址,请在范围内启用
read_user
选项。