I am building a test application and testing out externallogins via facebook.
I am using fiddler and when I click the button to login via facebook I am getting code 200 results (but they are locked due to HTTPS), but I am receiving a null value for loginInfo.
Here specifically:
[AllowAnonymous]
public async Task<ActionResult> ExternalLoginCallback(string returnUrl)
{
var loginInfo = await AuthenticationManager.GetExternalLoginInfoAsync(); // this is null
if (loginInfo == null)
{
return RedirectToAction("Login");
}
I have reset my secret key and that does not work. I have the most updated version of Microsoft.AspNet.Identity.Owin (2.2.1).
What is the deal with this?
Any help is appreciated.