1
Good morning,
I will send a link through my system for the client to have access, until then everything is ok, however I wanted to send a token to validate, along with the link, and when the client access the page, it validate the token if everything is right, he access, otherwise it informs that it has no access.
Like I do when I reset the password I use for myself `Identity
var token = await _userManager.GeneratePasswordResetTokenAsync(user);
var encodedToken = HttpUtility.UrlEncode(token);
And then I use the code
var decodedToken = HttpUtility.UrlDecode(model.Token);
What would be the best way to do ? To not have security loopholes in the system. That’s my biggest concern.