身份验证资源类型

命名空间:microsoft.graph

重要

Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

公开身份验证登录首选项和关系,这些首选项和关系表示可为用户提供配置的Microsoft Entra ID支持的身份验证方法。

继承自 entity

Methods

方法 返回类型 说明
获取身份验证登录首选项 身份验证 获取用户的身份验证登录首选项。 这包括是否为用户启用系统首选身份验证和用户首选多重身份验证方法。
更新身份验证登录首选项 身份验证 更新用户的身份验证登录首选项。

属性

属性 类型 说明
id String 身份验证的唯一标识符。
signInPreferences signInPreferences 用户登录体验的设置和首选项。 使用此属性可配置用户的默认多重身份验证 (MFA) 方法。

关系

关系 类型 说明
emailMethods emailAuthenticationMethod 集合 表示注册到用户进行身份验证的电子邮件地址。
fido2Methods fido2AuthenticationMethod 集合 表示注册到用户进行身份验证的 FIDO2 安全密钥。
方法 authenticationMethod 集合 表示注册到用户的所有身份验证方法。
microsoftAuthenticatorMethods microsoftAuthenticatorAuthenticationMethod 集合 注册到用户进行身份验证的 Microsoft Authenticator 应用的详细信息。
passwordlessMicrosoftAuthenticatorMethods passwordlessMicrosoftAuthenticatorAuthenticationMethod 集合 表示注册到用户进行身份验证的 Microsoft Authenticator 无密码电话登录方法。
passwordMethods passwordAuthenticationMethod 集合 表示注册到用户进行身份验证的密码身份验证方法的详细信息。
phoneMethods phoneAuthenticationMethod 集合 表示注册到用户进行身份验证的手机。
temporaryAccessPassMethods temporaryAccessPassAuthenticationMethod 集合 表示通过时间限制密码注册给用户进行身份验证的临时访问密码。
windowsHelloForBusinessMethods windowsHelloForBusinessAuthenticationMethod 集合 表示注册到用户进行身份验证的Windows Hello 企业版身份验证方法。

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@odata.type": "#microsoft.graph.authentication",
  "id": "String (identifier)",
  "signInPreferences": {
    "@odata.type": "microsoft.graph.signInPreferences"
  }
}