providers/eventbrite
EventbriteProfile
查看
https://www.eventbrite.com/platform/api#/reference/user/retrieve-your-user/retrieve-your-user
扩展
Record
<string
,any
>
属性
电子邮件
emails: {
email: string;
primary: boolean;
verified: boolean;
}[];
firstName
first_name: string;
id
id: string;
imageId
image_id: string;
lastName
last_name: string;
姓名
name: string;
default()
default<P>(config): OAuthConfig<P>
将 Eventbrite 登录添加到您的页面并向 Eventbrite API 发出请求。
设置
回调 URL
https://example.com/api/auth/callback/eventbrite
配置
import { Auth } from "@auth/core"
import Eventbrite from "@auth/core/providers/eventbrite"
const request = new Request(origin)
const response = await Auth(request, {
providers: [Eventbrite({ clientId: EVENTBRITE_CLIENT_ID, clientSecret: EVENTBRITE_CLIENT_SECRET })],
})
资源
注意
默认情况下,Auth.js 假设 Eventbrite 提供商基于 OAuth 2 规范。
💡
Eventbrite 提供商附带 默认配置。要根据您的用例覆盖默认值,请查看 自定义内置的 OAuth 提供商。
类型参数
类型参数 |
---|
P extends EventbriteProfile |
参数
参数 | 类型 |
---|---|
配置 | OAuthUserConfig <P > |
返回值
OAuthConfig
<P
>