authenticationmanager.getexternallogininfo()始终以linkedin返回null

时间:2018-11-30 15:14:22

标签: c# asp.net-mvc oauth-2.0 linkedin

我在MVC项目中使用了Oauth2。我们可以使用凭据成功连接到我们的应用,但是在验证用户身份后,外部登录回叫方法始终返回null。

检查了许多解决方案,但没有运气,但是另一个登录像Facebook一样工作正常。

对于这种集成,我在应用程序中使用了Microsoft.Owin 4.0.0版本。

1 个答案:

答案 0 :(得分:1)

最后,很长一段时间后我得到了解决方案。

将此行添加到Startup.cs函数的ConfigureAuth(IAppBuilder app)文件中。与下面的代码相同。

public void ConfigureAuth(IAppBuilder app)
{
      //Add this line at first inside the function.

      System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

      //Other code 

}