I am trying to follow this tutorial to access more user information when they log in using Facebook. Get more information from Social providers used in the VS 2013 project templates
Ultimately I would like to be able to get data such as the user's firstName, lastName, Zip, etc. when a user logs in using Facebook and store that in the AspNetUsers table when they register. I will try this link.
For now I would just like to get this tutorial working but it is slightly different from my MVC 5.2.2 project. I am getting a 'type or namespace name "FB" could not be found. How can I fix this error?
Also, the ExternalLoginCallback is different, would I add the "await StoreFacebookAuthToken(user);
" above var result = await SignInManager.ExternalSignInAsync(loginInfo, isPersistent: false);
?