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

Foursquare Provider

리소스

설정

콜백 URL

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

환경 변수

AUTH_FOURSQUARE__ID
AUTH_FOURSQUARE_SECRET

설정

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

노트

  • Foursquare는 YYYYMMDD 형식의 추가적인 apiVersion 매개변수를 요구합니다. 이 매개변수는 “이 날짜까지의 API 변경에 대비했다”는 의미를 나타냅니다.
Auth.js © Balázs Orbán and Team - 2025