Api 在 Azure AD 中获取密码策略
Api's to get Password Policy in Azure AD
我需要 API 借助域名或用户 mailId
获取 Azure Active Directory 的密码策略
link 中有 Azure AD 密码策略。它用于 Azure AD 用户,但不用于外部用户。
没有针对外部用户的 Microsoft Graph 和 Azure AD Graph API 的方法。
有关详细信息,请参阅 Azure AD Graph API and Microsoft Graph。
Is there any API's to get Password Policy for Azure AD user.
您可以使用 Microsoft Graph:
GET https://graph.microsoft.com/beta/users/{userPrincipalName}?$select=displayName,passwordPolicies
结果将如下所示:
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users(displayName,passwordPolicies)/$entity",
"displayName": "xxxxxx",
"passwordPolicies": "DisablePasswordExpiration"
}
您可以找到有关此内容的详细信息 属性 here。
还有另一种方法可以通过 Powershell 使用 Get-MsolPasswordPolicy
。
我需要 API 借助域名或用户 mailId
获取 Azure Active Directory 的密码策略link 中有 Azure AD 密码策略。它用于 Azure AD 用户,但不用于外部用户。
没有针对外部用户的 Microsoft Graph 和 Azure AD Graph API 的方法。
有关详细信息,请参阅 Azure AD Graph API and Microsoft Graph。
Is there any API's to get Password Policy for Azure AD user.
您可以使用 Microsoft Graph:
GET https://graph.microsoft.com/beta/users/{userPrincipalName}?$select=displayName,passwordPolicies
结果将如下所示:
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users(displayName,passwordPolicies)/$entity",
"displayName": "xxxxxx",
"passwordPolicies": "DisablePasswordExpiration"
}
您可以找到有关此内容的详细信息 属性 here。
还有另一种方法可以通过 Powershell 使用 Get-MsolPasswordPolicy
。