Skip to content
需要从 NextAuth.js v4 升级到最新版本吗?请查阅 版本升级指南

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],
})