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

GitHub Provider

리소스

설정

Callback URL

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

환경 변수

AUTH_GITHUB_ID
AUTH_GITHUB_SECRET

설정

/auth.ts
import NextAuth from "next-auth"
import GitHub from "next-auth/providers/github"
 
export const { handlers, auth, signIn, signOut } = NextAuth({
  providers: [GitHub],
})
Auth.js © Balázs Orbán and Team - 2025