尝试让用户使用GOOGLE登录时出现以下错误
我尝试了很多东西而且没有任何作用
我最初使用了以下代码
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")
});
根本没有运气,
我不知道我做错了什么,
有任何人遇到此问题并为此提供解决方案
非常感谢
干杯
答案 0 :(得分:1)
Google开发者控制台删除重定向URI末尾的 / 。
重定向URI必须与您发送的位置完全匹配。