错误:redirect_uri_mismatch(ASP.NET MVC)

时间:2017-10-10 08:30:33

标签: c# asp.net-mvc google-api google-oauth google-signin

尝试让用户使用GOOGLE登录时出现以下错误

enter image description here

我尝试了很多东西而且没有任何作用

我最初使用了以下代码

app.UseGoogleAuthentication(clientId: "APIKEY.apps.googleusercontent.com",
            clientSecret: "SECRET-K");

我也试过以下

app.UseGoogleAuthentication(new GoogleOAuth2AuthenticationOptions()
            {
                ClientId = "APIKEY.apps.googleusercontent.com",
                ClientSecret = "SECRET-K",
                CallbackPath = new PathString("/signin-google")
            });

根本没有运气,

我的Web应用程序的客户端ID设置如下 enter image description here

我不知道我做错了什么,

有任何人遇到此问题并为此提供解决方案

非常感谢

干杯

1 个答案:

答案 0 :(得分:1)

Google开发者控制台删除重定向URI末尾的 /

重定向URI必须与您发送的位置完全匹配。