File: netlify.md | Updated: 11/15/2025
š NextAuth.js is now part of Better Auth !
Version: v4
On this page
Documentationā
https://www.netlify.com/blog/2016/10/10/integrating-with-netlify-oauth2/
Configurationā
https://github.com/netlify/netlify-oauth-example
Optionsā
The Netlify Provider comes with a set of default options:
You can override any of the options to suit your own use case.
Exampleā
import NetlifyProvider from "next-auth/providers/netlify";...providers: [ NetlifyProvider({ clientId: process.env.NETLIFY_CLIENT_ID, clientSecret: process.env.NETLIFY_CLIENT_SECRET })]...