šŸ“„ next-auth/providers/pinterest

File: pinterest.md | Updated: 11/15/2025

Source: https://next-auth.js.org/providers/pinterest

Skip to main content

šŸŽ‰ NextAuth.js is now part of Better Auth !

Version: v4

On this page

Documentation​


https://developers.pinterest.com/docs/getting-started/authentication/

Configuration​


https://developers.pinterest.com/apps/

Options​


The Pinterest Provider comes with a set of default options:

You can override any of the options to suit your own use case.

Example​


import PinterestProvider from "next-auth/providers/pinterest"...providers: [  PinterestProvider({    clientId: process.env.PINTEREST_ID,    clientSecret: process.env.PINTEREST_SECRET  })]...:::tipTo use in production, make sure the app has standard API access and not trial access:::