I'm trying to return the users email address after authorizing with scope "
https://www.googleapis.com/auth/userinfo.email". I've tried the following:
service = build('userinfo', 'v1', http=http)
service = build('userinfo.email', 'v1', http=http)
service = build('email', 'v1', http=http)
service = build('profile', 'v1', http=http)
service = build('profile.email', 'v1', http=http)
but all I get is UnknownApiNameOrVersion errors. What is the proper service I should be referencing to get an email address?