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

Dribbble Provider

리소스

설정

Callback URL

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

환경 변수

AUTH_DRIBBBLE_ID
AUTH_DRIBBBLE_SECRET

설정

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

참고 사항

  • 더 복잡한 시나리오를 위해 선택적으로 public upload 범위를 설정할 수 있습니다. 생략할 경우, 인증 목적으로 기본 public 범위가 사용됩니다.
Auth.js © Balázs Orbán and Team - 2025