Skip to content
Migrating from NextAuth.js v4? Read our migration guide.
Getting Started
Providers
Dribbble

Dribbble Provider

Resources

Setup

Callback URL

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

Environment Variables

AUTH_DRIBBBLE_ID
AUTH_DRIBBBLE_SECRET

Configuration

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

Notes

  • You can optionally set the scope to public upload for more advanced scenarios. If omitted, the default public scope will be used for authentication purposes.
Auth.js © Balázs Orbán and Team - 2024