Hi,
I´m using a classic ASP.NET MVC application with ASP.NET Identity und local accounts (stored in SQL DB). After adding Auth0 as described in the tutorial
builder.Services.AddAuth0WebAppAuthentication(options =>
{
options.Domain = "...";
options.ClientId = "...";
});
I´m no longer able to login with my existing local accounts. After I login with the usual call
_signInManager.PasswordSignInAsync(...)
the ClaimsIndentity set in the User context is empty. It has no claims and all properties are null. Do I have to add Auth0 in a different way in order to use local accounts and Auto0 with external accounts parallel?
Thx in advance