1

How can I get the user's email address if I have the access token of that user in my google plus apps?

Kara
  • 6,115
  • 16
  • 50
  • 57
Sarwar Hasan
  • 1,561
  • 2
  • 17
  • 25

2 Answers2

1

perhaps it helps https://developers.google.com/+/api/latest/people#resource

theHack
  • 1,938
  • 9
  • 26
  • 33
0

Getting the user's email address requires additional authorization. You will need to add the https://www.googleapis.com/auth/userinfo.email scope and can then use the userinfo endpoint to request the information. See https://developers.google.com/accounts/docs/OAuth2 for more information.

Prisoner
  • 49,922
  • 7
  • 53
  • 105