微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为什么MVC 5 Owin Oauth没有点击/ Account/ExternalLoginCallback行动

我是MVC 5认证的新手.目前,我尝试使用Owin进行Google授权
startup.Auth.cs中的代码

var googleOAuth2Authenticationoptions = new GoogleOAuth2Authenticationoptions
{
    ClientId = "Client-id",ClientSecret = "secret-key",CallbackPath = new PathString("/Account/ExternalLoginCallback"),Provider = new GoogleOAuth2AuthenticationProvider()
    {
        OnAuthenticated = async context =>
        {
            context.Identity.AddClaim(new Claim("picture",context.User.GetValue("picture").ToString()));
            context.Identity.AddClaim(new Claim("profile",context.User.GetValue("profile").ToString()));
        }
    }
};
googleOAuth2Authenticationoptions.Scope.Add("email");

app.UseGoogleAuthentication(googleOAuth2Authenticationoptions);

但它没有点击ExternalLoginCallback Action进行调试.

[AllowAnonymous]
public async Task<ActionResult> ExternalLoginCallback(string returnUrl)

它停在/ Account / ExternalLoginCallback?ReturnUrl = /,带有空白屏幕.
我不会发现这有什么问题.并找到类似的问题Google Authentication using OWIN Oauth in MVC5 not hitting ExternalLoginCallback function,但它在我的情况下没有帮助.

解决方法

这类似于: Google Authentication using OWIN Oauth in MVC5 not hitting ExternalLoginCallback function

基本上,将开发人员信息中心中的Google应用设置为指向* / ExternalLoginCallback方法.

保留GoogleProvider的认回调路径.

var googleOAuth2Authenticationoptions = new GoogleOAuth2Authenticationoptions
    {
        ClientId = "MYCLIENTID",ClientSecret = "MYSECRET"
    };

在RouteConfig添加处理signin-google的路由:

routes.MapRoute(
            name: "signin-google",url: "signin-google",defaults: new { controller = "[YOURCONTROLLLER]",action = "ExternalLoginCallback"});

这应该修复谷歌提供商和所有其他人.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐