我使用MVC ASP.Net 4.5构建了一个门户。我自定义了注册过程,即用户在通过电子邮件中的url激活密码后立即重置密码。我生成如下所示的回调网址,
var callbackUrl = Url.Action("ResetPassword", "Account", new { userId = userID, code = code, firstTime = firstTime }, protocol: Request.Url.Scheme);
除了在Samsung Galaxy Note 8中安装的mozilla浏览器和gmail mobile之外,大多数环境都没有问题。它们不会加载该参数。它们只会像url以下那样加载,
http://www.example.com/Account/ResetPassword
我真的感到困惑,为什么回调不返回有效的URL。请告知我该怎么办?
最好的问候, 阿芬