I'm making a service that runs over flask and uses OAuth for authentication. My code is roughly same as things in this link. For now, I tried to request Google with scope 'email' as below:
def authorize(self):
return redirect(self.service.get_authorize_url(
scope = 'email',...
And then, I could get a response, the following is part of the response:
...u'name': u'', u'family_name': u'', u'email_verified': True, u'given_name': u''...
As you can see, names are just blank while I could get the email address as intended. So, I'd like to know if there's any workaround to get the email and the name(s) at the same time. Thank you in advance for your help. :-)