I want my website to automatically add the user's email address and avatar when they register via OpenId or OAuth. MVC 5 allows a user to register and login with their openId Google, Facebook, or Twitter account, however it doesn't seem to pass any of the linked information back to the website.
I already have a user profile model that gets created when the user registers, but I would like to be able to add their Email address and avitar without having to ask them for it. How can I access the user's linked avatar and email address that is associated with their Google/Facebook/Twitter account once they register through an openId?
So far the information I have found and tried seems to be applicable to MVC 4 or the release candidate of MVC 5 and doesn't seem to work.
Thanks