I'm using C# OAuthWebSecurity for authenticating against Facebook and other 3rd party OAuth providers. I'm successfully authenticating with Facebook and am getting an AccessToken for my app returned to me. I'm now trying to retrieve my friend's list using the AccessToken. I need to retrieve each friend's email address. I'm not able to see email address from the friends returned. I suspect the AccessToken has not been granted rights to retrieve email address. How do I make C# OAuthWebSecurity request email as part of the AccessToken? I can see my own email address, but need to retrieve email address for each friend in my list.
Thanks for your help.