Niedawno zaktualizowałem Asp.Net Identity Core
mój formularz zgłoszeniowy z 1.0 do 2.0.
Są nowe funkcje, które chciałem wypróbować GenerateEmailConfirmationToken
itp.
Używam tego projektu jako odniesienia.
Kiedy użytkownik próbuje się zarejestrować, pojawia się błąd podczas wykonywania metody Register w Post
private readonly UserManager<ApplicationUser> _userManager;
public ActionResult Register(RegisterViewModel model)
{
if (ModelState.IsValid)
{
var ifUserEXists = _userManager.FindByName(model.EmailId);
if (ifUserEXists == null) return View(model);
var confirmationToken = _userRepository.CreateConfirmationToken();//this is how i'm generating token currently.
var result = _userRepository.CreateUser(model,confirmationToken);
var user = _userManager.FindByName(model.EmailId);
if (result)
{
var code = _userManager.GenerateEmailConfirmationToken(user.Id);//error here
_userRepository.SendEmailConfirmation(model.EmailId, model.FirstName, confirmationToken);
//Information("An email is sent to your email address. Please follow the link to activate your account.");
return View("~/Views/Account/Thank_You_For_Registering.cshtml");
}
}
//Error("Sorry! email address already exists. Please try again with different email id.");
ModelState.AddModelError(string.Empty, Resource.AccountController_Register_Sorry__User_already_exists__please_try_again_);
return View(model);
}
W linii
var code = _userManager.GenerateEmailConfirmationToken(user.Id);
Pojawia się błąd mówiący:
No IUserTokenProvider is registered.
Na razie chciałem tylko zobaczyć, jaki kod generuje. Czy jest jakaś zmiana, którą muszę wprowadzić w mojej ApplicationUser
klasie, która dziedziczy po IdentityUser
klasie?
Czy jest coś, co muszę zmienić, aby te funkcje działały?