Dropbox 供應商
資源
設定
回調 URL
https://example.com/api/auth/callback/dropbox
環境變數
AUTH_DROPBOX_ID
AUTH_DROPBOX_SECRET
組態
/auth.ts
import NextAuth from "next-auth"
import Dropbox from "next-auth/providers/dropbox"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Dropbox],
})