Files
cozsweet-frontend-nextjs/docs/nextauth/docs/providers/hubspot.md
T
admin d70e61f92e refactor(auth): switch to class-based social login and v4 route handler
Migrate from function-based social login helpers (`facebookLogin`, `googleLogin`)
to class-based services (`new FacebookLogin().signIn()`, `new GoogleLogin().signIn()`),
updating call sites in `AuthFacebookPanel` and `SplashButton` with try/catch error
handling. The NextAuth route handler is also refactored to the v4 pattern, importing
pre-built `GET` / `POST` exports from `@/lib/auth/nextauth` instead of constructing
the handler inline with `NextAuth(authOptions)`.
2026-06-10 15:34:52 +08:00

1.5 KiB

id, title
id title
hubspot HubSpot

:::note HubSpot returns a limited amount of information on the token holder (see docs). One other issue is that the name and profile photo cannot be fetched through API as discussed here. :::

Documentation

https://developers.hubspot.com/docs/api/oauth-quickstart-guide

Configuration

You need to have an APP in your Developer Account as described at https://developers.hubspot.com/docs/api/developer-tools-overview

Options

The HubSpot Provider comes with a set of default options:

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

Example

import HubspotProvider from "next-auth/providers/hubspot";
...
providers: [
  HubspotProvider({
    clientId: process.env.HUBSPOT_CLIENT_ID,
    clientSecret: process.env.HUBSPOT_CLIENT_SECRET
  })
]
...

:::warning The Redirect URL under the Auth tab on the HubSpot App Settings page must match the callback url which would be http://localhost:3000/api/auth/callback/hubspot for local development. Only one callback URL per Client ID and Client Secret pair is allowed, so it might be easier to create a new app for local development then fiddle with the url changes.
:::