Skip to content
Migrating from NextAuth.js v4? Read our migration guide.
시작하기프로바이더42 School

42School Provider

리소스

설정

콜백 URL

https://example.com/api/auth/callback/42-school

환경 변수

AUTH_42_SCHOOL_ID
AUTH_42_SCHOOL_SECRET

설정

/auth.ts
import NextAuth from "next-auth"
import 42School from "next-auth/providers/42-school"
 
export const { handlers, auth, signIn, signOut } = NextAuth({
  providers: [42School],
})

참고 사항

  • 42 API는 Accountcreated_at이라는 필드를 반환하는데, 이 필드는 숫자 타입입니다. 이는 기본 스키마에서 이 필드에 사용하는 데이터 타입과 다릅니다. 자세한 내용은 42 School 문서를 참고하세요. 데이터베이스 어댑터를 사용 중이라면 데이터베이스 스키마에 이 필드를 추가하거나 수정해야 합니다.
Auth.js © Balázs Orbán and Team - 2025