File: dropbox.md | Updated: 11/15/2025
š NextAuth.js is now part of Better Auth !
Version: v4
On this page
Documentationā
https://developers.dropbox.com/oauth-guide
Configurationā
https://www.dropbox.com/developers/apps
Optionsā
The Dropbox Provider comes with a set of default options:
You can override any of the options to suit your own use case.
Exampleā
import DropboxProvider from "next-auth/providers/dropbox";...providers: [ DropboxProvider({ clientId: process.env.DROPBOX_CLIENT_ID, clientSecret: process.env.DROPBOX_CLIENT_SECRET })]...