providers/descope
DescopeProfile
使用配置文件回调时,Descope 返回的用户配置文件。 查看加载用户
可索引
[claim
: string
]: unknown
属性
电子邮件
email: string;
用户的电子邮件
email_verified
email_verified: boolean;
一个布尔值,指示用户的电子邮件是否已验证
姓名
name: string;
用户的姓名
phone_number
phone_number: string;
用户的电话号码
phone_number_verified
phone_number_verified: boolean;
一个布尔值,指示用户的电话号码是否已验证
图片
picture: string;
用户的图片
sub
sub: string;
用户的唯一 Descope ID
default()
default(config): OIDCConfig<DescopeProfile>
设置
回调 URL
https://example.com/api/auth/callback/descope
配置
import { Auth } from "@auth/core"
import Descope from "@auth/core/providers/descope"
const request = new Request(origin)
const response = await Auth(request, { providers: [Descope({ clientId: AUTH_DESCOPE_ID, clientSecret: AUTH_DESCOPE_SECRET, issuer: AUTH_DESCOPE_ISSUER })] })
配置 Descope
按照以下步骤操作
- 登录 Descope 控制台
- 按照 OIDC 指令
然后,在项目根目录中创建一个 .env.local
文件,并添加以下条目
从 Descope 的控制台中获取以下内容
AUTH_DESCOPE_ID="<Descope Issuer's last url segment>" # Descope's Issuer can be found in "Authentication Methods > SSO > Identity Provider" (Can also be taken from "Project > Project ID")
AUTH_DESCOPE_SECRET="<Descope Access Key>" # Manage > Access Keys
AUTH_DESCOPE_ISSUER="<Descope Issuer URL>" # Applications -> OIDC Application -> Issuer
资源
笔记
Descope 提供者带有一个 默认配置。要覆盖您的用例的默认值,请查看 自定义内置 OAuth 提供者。
默认情况下,Auth.js 假设 Descope 提供者基于 OIDC 规范
帮助
如果您认为在默认配置中发现了错误,可以 打开一个问题。
Auth.js 严格遵守规范,无法对提供者对规范的任何偏差负责。您可以打开一个问题,但如果问题是非规范性问题,我们可能不会寻求解决方法。您可以在 讨论 中寻求更多帮助。
参数
参数 | 类型 |
---|---|
config | OIDCUserConfig <DescopeProfile > |