providers/faceit
default()
default(options): OAuthConfig<Record<string, any>>
在你的页面中添加 FACEIT 登录。
设置
回调 URL
https://example.com/api/auth/callback/faceit
配置
import { Auth } from "@auth/core"
import FACEIT from "@auth/core/providers/faceit"
const request = new Request(origin)
const response = await Auth(request, {
providers: [
FACEIT({ clientId: FACEIT_CLIENT_ID, clientSecret: FACEIT_CLIENT_SECRET }),
],
})
资源
备注
授权类型:授权码要获取基本信息(电子邮件、昵称、guid 和头像):openid、email、profile 默认情况下,Auth.js 假设 FACEIT 提供商基于 OAuth 2 规范。
💡
FACEIT 提供商附带一个 默认配置。要根据你的用例覆盖默认值,请查看 自定义内置 OAuth 提供商。
参数
参数 | 类型 |
---|---|
options | OAuthUserConfig <Record <string , any >> |
返回值
OAuthConfig
<Record
<string
, any
>>