I have a ASP.NET MVC application. I integrated it with Facebook. It works but here is a strange problem. If i open a incognito window it works. But it not works in normal window. Could there be a cookie problem or?
What's your suggest?
//loginInfo is always null except incognito window
var loginInfo = await _authenticationManager.GetExternalLoginInfoAsync();
if (loginInfo == null)
{
return RedirectToRoute("UserLogin");
}
