Я создаю систему отчетов, которая позволяет пользователям входить в систему с использованием учетных данных Azure, которые затем они подписываются / отменяют подписку на отчеты.
В настоящее время используется удостоверение ASP.NET, которое отлично работает, но требует дополнительной поддержки ИТ.когда люди забывают свои учетные данные и т. д.
Как сохранить учетные данные Azure в ASP.NET Identity?Как это происходит с другими внешними провайдерами, такими как Facebook и т. Д., Или вы не хотите использовать ASP.NET Identity вместе и сохранить адрес электронной почты в таблице и ссылаться на эту таблицу вместо версии ASP.NET Identity?
Startup.cs
services.AddAuthentication(AzureADDefaults.AuthenticationScheme)
.AddAzureAD(options => Configuration.Bind("AzureAd", options));
services.Configure<OpenIdConnectOptions>(AzureADDefaults.OpenIdScheme, options =>
{
options.Authority = options.Authority + "/v2.0/";
// Per the code below, this application signs in users in any Work and School
// accounts and any Microsoft Personal Accounts.
// If you want to direct Azure AD to restrict the users that can sign-in, change
// the tenant value of the appsettings.json file in the following way:
// - only Work and School accounts => 'organizations'
// - only Microsoft Personal accounts => 'consumers'
// - Work and School and Personal accounts => 'common'
// If you want to restrict the users that can sign-in to only one tenant
// set the tenant value in the appsettings.json file to the tenant ID of this
// organization, and set ValidateIssuer below to true.
// If you want to restrict the users that can sign-in to several organizations
// Set the tenant value in the appsettings.json file to 'organizations', set
// ValidateIssuer, above to 'true', and add the issuers you want to accept to the
// options.TokenValidationParameters.ValidIssuers collection
options.TokenValidationParameters.ValidateIssuer = false;
// Custom
options.Scope.Add("email");
//options.Scope.Add("profile");
options.SaveTokens = true;
options.GetClaimsFromUserInfoEndpoint = true;
options.TokenValidationParameters = new TokenValidationParameters
{
NameClaimType = "name"
};
});
Спасибо за чтение.
РЕДАКТИРОВАТЬ: сейчас я просто использую событие TokenValidated, а затем создаю пользователя с помощью UserManager с CreateAsync.