providers/webex
WebexProfile
使用配置文件回调时,从 Webex 返回的用户个人资料。
请参考 Webex 开发者门户上的 人员 - 获取我自己的详细信息 以获取其他字段。返回的字段可能因用户的角色、OAuth 集成的范围以及 OAuth 集成所属的组织而异。
扩展
Record
<string
,any
>
属性
avatar?
optional avatar: string;
displayName?
optional displayName: string;
emails
emails: string[];
id
id: string;
default()
default<P>(config): OAuthConfig<P>
将 Webex 登录添加到您的页面。
设置
回调 URL
https://example.com/api/auth/callback/webex
配置
import { Auth } from "@auth/core"
import Webex from "@auth/core/providers/webex"
const request = new Request(origin)
const response = await Auth(request, {
providers: [
Webex({ clientId: WEBEX_CLIENT_ID, clientSecret: WEBEX_CLIENT_SECRET }),
],
})
资源
笔记
默认情况下,Auth.js 假设 Webex 提供商基于 OAuth 2 规范。
💡
Webex 提供商附带 默认配置。要为您的用例覆盖默认值,请查看 自定义内置 OAuth 提供商。
类型参数
类型参数 |
---|
P extends WebexProfile |
参数
参数 | 类型 |
---|---|
config | OAuthUserConfig <P > & { apiBaseUrl : string ; } |
返回
OAuthConfig
<P
>