You are on page 1of 1

Inside articles (important)

https://www.stevejgordon.co.uk/asp-net-core-identity-token-providers

https://stackoverflow.com/questions/50844380/asp-net-core-2-1-identity-userstore-dependency-injection

https://github.com/aspnet/AspNetCore/blob/release/2.2/src/Identity/UI/src/IdentityServiceCollectionUIExtensions.cs

https://andrewlock.net/implementing-custom-token-providers-for-passwordless-authentication-in-asp-net-core-identity/

https://www.scottbrady91.com/ASPNET-Identity/Implementing-Mediums-Passwordless-
Authentication-using-ASPNET-Core-Identity

A voir IdentityConstants qui a des conséquence sur schéma authentification

Dans IdentityServiceCollectionUIExtensions.cs
o.DefaultScheme = IdentityConstants.ApplicationScheme;
o.DefaultSignInScheme = IdentityConstants.ExternalScheme ;

From :
https://github.com/aspnet/AspNetCore/blob/release/2.2/src/Identity/Extensions.Core/src/UserClai
msPrincipalFactory.cs

See bellow code :

if (UserManager.SupportsUserSecurityStamp)

if (UserManager.SupportsUserClaim)

Customize idea

http://sikorsky.pro/en/blog/aspnet-core-custom-user-manager

You might also like