为什么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"});

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

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....