Is there a way to map GAE user object and Google+ userid
问题 As mentioned here, for default authentication using python users API an object will be returned based on user's email. When user_id() is called over the object a unique id is returned, which is of course not a Google+ user id. import webapp2 from google.appengine.api import users class MainPage(webapp2.RequestHandler): def get(self): user = users.get_current_user() if user: if users.is_current_user_admin(): utype = "Admin" else: utype = "Normal" self.response.headers['Content-Type'] = 'text