I'm trying to implement sign in with Google using Oauth (using DotNetOpenAuth). I need to get user name, Id and email from Google. Basically I can get all the info apart from the email from Profile Information requesting access for this scope: https://www.googleapis.com/auth/userinfo.profile
Unfortunately it doesn't return user email. I know that I can get user email requesting access to contacts, but I don't want to ask for such access.
Is it possible? Where can I read about what profile information is accessible via api. I found this scope uri here on SO, it works, but I can't fing anything about it in Google api docs.
Thanks