providers/pinterest
PinterestProfile
扩展
Record
<string
,any
>
属性
account_type
account_type: "BUSINESS" | "PINNER";
profile_image
profile_image: string;
username
username: string;
website_url
website_url: string;
default()
default<P>(options): OAuthConfig<P>
将 Pinterest 登录添加到您的页面。
设置
回调 URL
https://example.com/api/auth/callback/pinterest
配置
import { Auth } from "@auth/core"
import Pinterest from "@auth/core/providers/pinterest"
const request = new Request(origin)
const response = await Auth(request, {
providers: [
Pinterest({
clientId: PINTEREST_CLIENT_ID,
clientSecret: PINTEREST_CLIENT_SECRET,
}),
],
})
资源
注释
默认情况下,Auth.js 假设 Pinterest 提供者基于 OAuth 2 规范。
💡
要在生产环境中使用,请确保该应用程序具有标准的 API 访问权限,而不是试用版访问权限。
💡
Pinterest 提供者附带 默认配置。要覆盖您的用例的默认值,请查看 自定义内置 OAuth 提供者。
类型参数
类型参数 |
---|
P extends PinterestProfile |
参数
参数 | 类型 |
---|---|
options | OAuthUserConfig <P > |
返回值
OAuthConfig
<P
>