Top "Asp.net-identity" questions

The ASP.

Store does not implement IUserRoleStore<TUser> ASP.NET Core Identity

I'm using ASP.NET Core 2.1 Identity. I've overridden IdentityUser because I need to add some additional properties on the user. …

c# asp.net-core .net-core asp.net-identity asp.net-core-2.1
Data Protection provider across Asp.NET Core and Framework (generate password reset link)

I am running into this problem relating to the DataProtectionProvider, first we only had 2 .NET Framework projects, now a .NET …

c# asp.net asp.net-core asp.net-identity data-protection
No Individual User Accounts auth option in ASP.NET Core Web API template

I am a bit confused as to why there is no Individual User Accounts authentication option in the latest ASP.…

asp.net asp.net-web-api asp.net-core asp.net-identity asp.net-core-webapi
using IdentityServer4 with custom Configration DBContext

I created a customized IConfigurationDbContext in order to using IDS4 with Oracle. public class IdentityConfigurationDbContext : DbContext, IConfigurationDbContext { private readonly ConfigurationStoreOptions …

c# entity-framework asp.net-core asp.net-identity identityserver4
Azure Active Directory login redirect loop

I need to allow users to login through Corp network to access an internal web application. I've followed all the …

c# azure asp.net-identity owin azure-active-directory
How to use Roles in user identity in MVC 5

I want to use asp.net useridentity in mvc 5, I do these steps: 1) create a mvc project. 2) create my own …

asp.net-mvc asp.net-mvc-5 asp.net-identity user-roles
How to configure confirmation email token lifespan in asp.net core mvc

I'm trying to extend the lifespan of both confirmation emails and password reset emails but I can't manage to do …

asp.net-mvc asp.net-core asp.net-identity password-recovery email-confirmation
How to show WebApi OAuth token endpoint in Swagger

I've created a new Web Api project, added Asp.Net Identity and configured OAuth like so: OAuthOptions = new OAuthAuthorizationServerOptions { TokenEndpointPath = …

asp.net-web-api asp.net-identity swagger-ui swashbuckle
UserManager VerifyUserTokenAsync Always False

I'm generating a usertoken like so public async Task GenerateCode() { var code = await UserManager.GenerateUserTokenAsync("heymega", new Guid("16139fcd-7ae0…

asp.net-mvc asp.net-identity asp.net-identity-2
What is Asp.net Core 2.1 Identity's LockoutEnabled property actually for?

I'm using Asp.net Core 2.1 Identity and there is a property named "LockoutEnabled", for a second I thought this flag …

asp.net-core asp.net-identity asp.net-core-identity