我遵循了本教程:https://www.learnmvc.in/aspnet-mvc-identity-with-yahoo-account.php
这是我在developer.yahoo.com中注册我的应用程序的方式:
我安装了Owin.Security.Providers.Yahoo,并在Startup.Auth中添加了以下代码:
app.UseYahooAuthentication(new YahooAuthenticationOptions()
{
ConsumerKey = "",
ConsumerSecret = ""
});
我将项目网址更改为:http://localhost:8000/
我最初收到此错误“所需的防伪cookie“ __RequestVerificationToken”不存在。“然后,我注释了AccountController的VerifyCode方法,并且不再遇到此错误。
但是我收到502内部服务器错误。
我什至尝试将127.0.0.1放在回调域中,但仍然出现相同的错误。我该怎么解决?