We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In ASP.NET Core 1.1, if you call:
var code = _userManager.GenerateChangePhoneNumberTokenAsync(user, "(21) 92345-7154");
... you get back a token that is SMS-friendly, for example: "293688"
In ASP.NET Core 2.0, the same call returns a token that looks like:
"CfDJ8NlUtDo9xLxKnOBUmUICyLsPm6IFT3Xdp9OIBPwggxd2XdFiJxW+3x4DZf4sGlHhyXC4oPMgMVLzq0la6Di+cfWIwopZvzfMFkwx0ThBEOF4xxTVab2xwHSeW54GMxvjiEv9XFDCqjegpw/5y7iR7WiqtB6UNoIk0Hc6VGNkMxwROOuiEDFHy97e7flTDlVwTm9CiovkN3JQC+UDtoOCG+NXnsJ7l+aQ6mzF50aYsWqt8eT2GXhP1sKpD6P9RKuhKiu4Y0m7BBYW8jfE5EKgH4I="
You can't ask the user to type the above token to verify his phone number, because it's too long and complicated.
Is this a known bug?
Thanks
The text was updated successfully, but these errors were encountered:
This issue was moved to aspnet/Identity#1388
Sorry, something went wrong.
No branches or pull requests
In ASP.NET Core 1.1, if you call:
var code = _userManager.GenerateChangePhoneNumberTokenAsync(user, "(21) 92345-7154");
... you get back a token that is SMS-friendly, for example: "293688"
In ASP.NET Core 2.0, the same call returns a token that looks like:
"CfDJ8NlUtDo9xLxKnOBUmUICyLsPm6IFT3Xdp9OIBPwggxd2XdFiJxW+3x4DZf4sGlHhyXC4oPMgMVLzq0la6Di+cfWIwopZvzfMFkwx0ThBEOF4xxTVab2xwHSeW54GMxvjiEv9XFDCqjegpw/5y7iR7WiqtB6UNoIk0Hc6VGNkMxwROOuiEDFHy97e7flTDlVwTm9CiovkN3JQC+UDtoOCG+NXnsJ7l+aQ6mzF50aYsWqt8eT2GXhP1sKpD6P9RKuhKiu4Y0m7BBYW8jfE5EKgH4I="
You can't ask the user to type the above token to verify his phone number, because it's too long and complicated.
Is this a known bug?
Thanks
The text was updated successfully, but these errors were encountered: