providers/hubspot
default()
default<P>(options): OAuthConfig<P>
将 HubSpot 登录添加到您的页面。
设置
回调 URL
https://example.com/api/auth/callback/hubspot
配置
import { Auth } from "@auth/core"
import HubSpot from "@auth/core/providers/hubspot"
const request = new Request(origin)
const response = await Auth(request, {
providers: [
HubSpot({
clientId: HUBSPOT_CLIENT_ID,
clientSecret: HUBSPOT_CLIENT_SECRET,
}),
],
})
资源
备注
默认情况下,Auth.js 假设 HubSpot 提供商基于 OAuth 2 规范。
您需要在开发者帐户中拥有一个应用程序,如 https://developers.hubspot.com/docs/api/developer-tools-overview 中所述。
💡
HubSpot 提供商附带了 默认配置。要为您的用例覆盖默认值,请查看 自定义内置 OAuth 提供商。
类型参数
类型参数 |
---|
P extends HubSpotProfile |
参数
参数 | 类型 |
---|---|
options | OAuthUserConfig <P > |
返回值
OAuthConfig
<P
>