Pipedrive Provider
Resources
Setup
Callback URL
https://example.com/api/auth/callback/pipedrive
Environment Variables
AUTH_PIPEDRIVE_ID
AUTH_PIPEDRIVE_SECRET
Configuration
/auth.ts
import NextAuth from "next-auth"
import PipeDrive from "next-auth/providers/pipedrive"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [PipeDrive],
})