I am working with google OAuth API to get user info using this url
With the scopes
https://www.googleapis.com/auth/userinfo.profile
https://www.googleapis.com/auth/userinfo.email
I got the following response
{ "id": "123456788", "name": "Joe Shmoe",
"given_name": "Joe", "family_name": "Shmoe",
"link": "https://plus.google.com/1234567788",
"picture": "https://IMAGE_URL/photo.jpg",
"gender": "male", "birthday": "0000-03-10", "locale": "en-GB"}
I am looking for email but it is not available in response.