带有ASP.NET的Yahoo OAuth给出错误502

时间:2019-01-30 18:08:30

标签: asp.net login oauth yahoo

我遵循了本教程:https://www.learnmvc.in/aspnet-mvc-identity-with-yahoo-account.php

这是我在developer.yahoo.com中注册我的应用程序的方式:

enter image description here

我安装了Owin.Security.Providers.Yahoo,并在Startup.Auth中添加了以下代码:

app.UseYahooAuthentication(new YahooAuthenticationOptions()
{
    ConsumerKey = "",
    ConsumerSecret = ""
});

我将项目网址更改为:http://localhost:8000/

我最初收到此错误“所需的防伪cookie“ __RequestVerificationToken”不存在。“然后,我注释了AccountController的VerifyCode方法,并且不再遇到此错误。

但是我收到502内部服务器错误。

enter image description here

我什至尝试将127.0.0.1放在回调域中,但仍然出现相同的错误。我该怎么解决?

0 个答案:

没有答案