Skip to content
Migrating from NextAuth.js v4? Read our migration guide.

GitLab Provider

리소스

설정

콜백 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 옵션을 스코프에서 활성화해야 합니다.
Auth.js © Balázs Orbán and Team - 2025