我需要获取具有给定Gmail ID的用户的用户名。有没有谷歌API可以这样做?或者,如果有人可以建议如何实现这一点。
对我来说这将是一个很大的帮助。
提前致谢!
答案 0 :(得分:0)
好的,这不是一个绝对的解决方案,但是如果您使用
def _get_email_and_name(self, email):
temp = email.split("<")
if (len(temp)) > 1:
temp[1] = temp[1].replace(">", "")
temp[0] = temp[0].rstrip()
return temp
else:
return None, temp[0]
答案 1 :(得分:-1)
getProfile应该做到这一点。获取他们的电子邮件地址。 ({+ 3}}对于g + api)