ASP.NET Identity 2.1 - Password Reset Invalid Tokens
问题 ASP.NET Identity is returning an 'Invalid token.' response when resetting a password for users. I've tried the following: URL Encode the code before sending email URL Encode & Decode the code before and after Copying the code to make sure it matches what was sent Ensured my user email is confirmed (I heard that could be a problem) Created a custom UserManager/Store etc. This is my email code: var user = await UserManager.FindByNameAsync(model.Email); var code = await UserManager