我正在尝试使用.NET ADAL库验证Azure AD中的用户密码。 这适用于没有MFA的常规用户帐户,但是我为遇到激活MFA的用户遇到了问题。
当使用用户的实际密码时,我得到AADSTS50076: Application password is required.
,这是公平的,但当我创建新的应用密码时,我收到了错误AADSTS70002: Error validating credentials. AADSTS50020: Invalid username or password
。我创建了多个应用密码,但它们都不起作用。
用于尝试身份验证的代码如下:
var ac = new AuthenticationContext("https://login.windows.net/my-tenant.com");
var authResult = ac.AcquireToken("https://graph.windows.net", "my-client-id", new UserCredential("my.account@my-tenant.com", "my-password"));
尝试进行身份验证的用户是此AD中的全局管理员。
是否可以为具有MFA的用户执行此类身份验证?
答案 0 :(得分:2)
所以,为了回答我自己的问题,我采取了以下措施(为简洁起见而清理):
public class AzureAdAuthenticationProvider
{
private const string AppPasswordRequiredErrorCode = "50076";
private const string AuthorityFormatString = "https://login.windows.net/{0}";
private const string GraphResource = "https://graph.windows.net";
private AuthenticationContext _authContext;
private string _clientId;
public AzureAdAuthenticationProvider()
{
var tenantId = "..."; // Get from configuration
_authContext = new AuthenticationContext(string.Format(AuthorityFormatString, tenantId));
}
public bool Authenticate(string user, string pass)
{
try
{
_authContext.AcquireToken(GraphResource, _clientId, new UserCredential(user, pass));
return true;
}
catch (AdalServiceException ase)
{
return ase.ServiceErrorCodes.All(sec => sec == AppPasswordRequiredErrorCode);
}
catch (Exception)
{
return false; // Probably needs proper handling
}
}
}
它并不漂亮,但它可以胜任。
通过使用ServiceErrorCodes.All()
,我确保只有在发生单个AppPasswordRequired错误时,身份验证才成功。
此方法的唯一缺点是启用了MFA的用户必须使用其实际帐户密码才能登录。似乎不支持使用应用密码。