7

如何以管理员身份为其他用户重置密码?

我试过使用下面的代码

var code = await UserManager.GeneratePasswordResetTokenAsync(user.Id);
var result = await UserManager.ResetPasswordAsync(user.Id, code, vm.NewPassword);

在单步执行 GeneratePasswordResetTokenAsync 时,会调用控制器的 dispose 方法。

有人可以启发我吗?

4

2 回答 2

8

You can also extend UserManager and expose an explicit AdminChangePassword API that doesn't require any information. Something like this in ApplicationUserManager which extends UserManager should work:

public IdentityResult ChangePasswordAdmin(string userId, string newPassword) {
     var user = FindById(userId);
     // validate password using PasswordValidator.Validate
     user.PasswordHash = PasswordHasher.HashPassword(newPassword);
     Update(user);
}
于 2014-06-13T18:29:59.590 回答
-1

我应该在这里发布问题之前进行更多搜索。

显然我需要将 UserTokenProvider 与 DataProtectorTokenProvider 连接起来。

但是我不明白 DataProtector 的用途,如果有人可以在这里解释,我会很高兴。

var dataProtectionProvider = options.DataProtectionProvider;
if (dataProtectionProvider != null)
{
    manager.UserTokenProvider = new DataProtectorTokenProvider<MyUser>(dataProtectionProvider.Create("ASP.NET Identity"));
}

答案在这里找到

于 2014-05-21T12:38:43.327 回答