我正在创建一个新应用程序并开始使用EF6-rc1,Microsoft.AspNet.Identity.Core 1.0.0-rc1,Microsoft.AspNet.Identity.EntityFramework 1.0.0-rc1,Microsoft。 AspNet.Identity.Owin 1.0.0-rc1等昨天和RTM发布时,我今晚通过NuGet更新了它们到RTM。
除了我到目前为止所完成的工作的一些代码更改之外,所有内容似乎都很顺利,直到我尝试为该应用创建本地用户帐户。
我一直在处理电子邮件地址作为用户名格式,而发布候选版本工作得很好,但现在在创建一个用户名的电子邮件地址的用户时,它会引发以下验证错误:
User name xxxxx@xxxx.com is invalid, can only contain letters or digits.
我花了最后一小时左右的时间搜索有关配置选项的解决方案或文档,但无济于事。
我是否可以将其配置为允许用户名的电子邮件地址?
答案 0 :(得分:157)
您可以通过在UserManager上插入自己的UserValidator,或者只是在默认实现中将其关闭来实现此目的:
UserManager.UserValidator = new UserValidator<TUser>(UserManager) { AllowOnlyAlphanumericUserNames = false }
答案 1 :(得分:15)
这个(在App_Code \ IdentityModels.cs中)的C#版本是
public UserManager()
: base(new UserStore<ApplicationUser>(new ApplicationDbContext()))
{
UserValidator = new UserValidator<ApplicationUser>(this) { AllowOnlyAlphanumericUserNames = false };
}
答案 2 :(得分:8)
就我而言,使用ASP.NET Identity 2.0在VS 2013 C#,MVC 5.2.2中运行,解决方案是更新App_Start \ IdentityConfig.cs中的ApplicationUserManager构造函数,如下所示:
public ApplicationUserManager(IUserStore<ApplicationUser> store)
: base(store)
{
this.UserValidator = new UserValidator<ApplicationUser>(this) { AllowOnlyAlphanumericUserNames = false };
}
答案 3 :(得分:4)
如果您正在使用ASP.Net webforms并且正在尝试完成此操作,只需打开您的IdentityModels.vb / cs文件并在Public Class UserManager下,看起来如此:
Public Class UserManager
Inherits UserManager(Of ApplicationUser)
Public Sub New()
MyBase.New(New UserStore(Of ApplicationUser)(New ApplicationDbContext()))
Users = store
UserValidator = New UserValidator(Of ApplicationUser)(Me) With {.AllowOnlyAlphanumericUserNames = False}
End Sub
Public Property Users() As IUserStore(Of ApplicationUser)
Get
Return m_Users
End Get
Private Set(value As IUserStore(Of ApplicationUser))
m_Users = value
End Set
End Property
Private m_Users As IUserStore(Of ApplicationUser)
End Class
答案 4 :(得分:1)
对于使用AspNet.Identity.Core 2.1及更高版本的用户,UserManager中的这些验证器是只读的。默认情况下,允许使用电子邮件地址作为用户名,但是如果您需要进一步自定义用户名中的字符,则可以在Startup.cs中这样做:
public void ConfigureServices(IServiceCollection services)
{
services.AddIdentity<ApplicationUser, IdentityRole>(options => {
options.User.AllowedUserNameCharacters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._@+/";
});
// ... etc
}
(出于传统原因,我需要使用“ /”。)
答案 5 :(得分:1)
我遇到了同样的问题,当我尝试更改代码以使UserName是该人的真实姓名,而不是电子邮件时,系统向我显示相同的错误消息“用户名ABC DEF无效,只能包含字母或数字。”我解决了在AllowedUserNameCharacters中添加空格字符(以我的情况为结尾)的问题。
我使用Asp.Net Core 2.2和VS2017
这是我的代码
转到Startup.cs并在“ //用户设置”下编辑或添加以下行:
services.AddDbContext<ApplicationDbContext>(options =>
options.UseMySql(Configuration.GetConnectionString("DefaultConnection")));
services.AddIdentity<ApplicationUser, ApplicationRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();
services.Configure<IdentityOptions>(options =>
{
// Password settings.
options.Password.RequireDigit = true;
options.Password.RequireLowercase = true;
options.Password.RequireNonAlphanumeric = true;
options.Password.RequireUppercase = true;
options.Password.RequiredLength = 6;
options.Password.RequiredUniqueChars = 1;
// Lockout settings.
options.Lockout.DefaultLockoutTimeSpan = TimeSpan.FromMinutes(5);
options.Lockout.MaxFailedAccessAttempts = 5;
options.Lockout.AllowedForNewUsers = true;
// User settings.
options.User.AllowedUserNameCharacters =
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._@+ ";
options.User.RequireUniqueEmail = false;
});
services.ConfigureApplicationCookie(options =>
答案 6 :(得分:0)
正如您可能已经发现的那样(并且可以预期),2014年3月发布的ASP.NET Identity 2.0.0在框架中添加了此功能。
公告:http://blogs.msdn.com/b/webdev/archive/2014/03/20/test-announcing-rtm-of-asp-net-identity-2-0-0.aspx
完整示例和教程,包括帐户确认:http://www.asp.net/identity/overview/features-api/account-confirmation-and-password-recovery-with-aspnet-identity
答案 7 :(得分:0)
如果找不到IdentityConfig.cs,请用此代码替换AccountController构造函数。
public AccountController(UserManager<ApplicationUser> userManager)
{
UserManager = userManager;
UserManager.UserValidator = new UserValidator<ApplicationUser>(UserManager)
{
AllowOnlyAlphanumericUserNames = false
};
}
答案 8 :(得分:0)
在我的情况下,我有一个使用身份验证的存储库类,但我没有让我使用&#34; - &#34;在用户名内..修复在这里的构造函数中:
//-------------------------------------------------------
public AuthRepository()
//-------------------------------------------------------
{
_ctx = new AuthContext();
_userManager = new UserManager<IdentityUser>(new UserStore<IdentityUser>(_ctx));
_userManager.UserValidator = new UserValidator<IdentityUser>(_userManager)
{
AllowOnlyAlphanumericUserNames = false
};
}
答案 9 :(得分:0)
我也坚持这一点,因为这些天大多数时候用户名都是电子邮件,但我可以理解单独的电子邮件领域的原因。这些纯粹是我的想法/经验,因为我也找不到微软对此的说法。
请记住,Asp Identity纯粹是为了识别某人,您不必识别电子邮件,但它们允许我们存储它,因为它构成了身份的一部分。在visual studio中创建新的Web项目时,您可以选择身份验证选项。
如果选择非空项目类型(如MVC)并将身份验证设置为&#34;个人帐户&#34;然后,您将获得用户管理的基本基础。其中一个包含App_Start \ IdentityConfig.cs中的子类:
// Configure the application user manager used in this application. UserManager is defined in ASP.NET Identity and is used by the application.
public class ApplicationUserManager : UserManager<ApplicationUser>
{
public ApplicationUserManager(IUserStore<ApplicationUser> store)
: base(store)
{
}
public static ApplicationUserManager Create(IdentityFactoryOptions<ApplicationUserManager> options, IOwinContext context)
{
var manager = new ApplicationUserManager(new UserStore<ApplicationUser>(context.Get<ApplicationDbContext>()));
// Configure validation logic for usernames
manager.UserValidator = new UserValidator<ApplicationUser>(manager)
{
AllowOnlyAlphanumericUserNames = false,
RequireUniqueEmail = true
};
}
//N.B rest of code removed
}
这告诉我们,微软打算让我们存储更复杂的用户名(参考AllowOnlyAlphaNumericUserNames = false),所以我们确实有混合信号。
这是从默认的Web项目生成的这一事实为我们提供了一个良好的指示/指示(以一种干净的方式),使我们能够输入用户名字段的电子邮件。它很干净,因为在使用Microsoft.OWIN上下文引导应用程序时,在App_Start \ Startup.Auth.cs中使用静态create方法。
这种方法的唯一不利方面是你最终存储了两次电子邮件....哪个不好!
答案 10 :(得分:0)
如果您在帐户控制器中使用某种IOC(我正在使用StructureMap),则在传入Usermanager时,需要应用 Hao Kung 所提到的修复程序: (我不得不)。在IOC设置中可能有一种方法可以执行此操作,但我不知道如何操作。
public AccountController(ApplicationUserManager userManager)
{
_userManager = userManager;
_userManager.UserValidator = new UserValidator<ApplicationUser>(_userManager)
{
AllowOnlyAlphanumericUserNames = false,
RequireUniqueEmail = true
};
答案 11 :(得分:0)
我遇到了同样的问题。但最后我通过在我的方法中添加波纹管部分而不是在构造函数中解决了该问题。
public void MyMethod(){
UserManager<ApplicationUser> manager = new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new ApplicationDbContext()));
// Configure validation logic for usernames
manager.UserValidator = new UserValidator<ApplicationUser>(manager)
{
AllowOnlyAlphanumericUserNames = false,
RequireUniqueEmail = true
};
}
答案 12 :(得分:0)
由于编码我自己的ApplicationUserManager:UserManager类对我不起作用(也许是因为我使用Razor Pages,而不是MVC),所以这是另一个解决方案:在CofigureServices()中的Startup.cs中,您可以配置身份选项,例如:
services.Configure<IdentityOptions>(options =>
{
options.User.AllowedUserNameCharacters =
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@";
options.User.RequireUniqueEmail = true;
});
Microsoft文档中有关此主题的更多信息:https://docs.microsoft.com/de-de/aspnet/core/security/authentication/identity-configuration?view=aspnetcore-2.2