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 defaultpublic
scope will be used for authentication purposes.