I have a question regarding the user api for GAE Python.
For a new application for an already existing user base I would like to get two informations for a user. First is the name and the second would be a flag (0,1 or 2 in example).
It’s an internal application and only people from the same domain can login. How can I access their information beyond whats in the users reference? And how could I set that additional flag?
Thanks alot.
from the
Userclass you may get only the information it provides, everything else you have to solicit directly from your users using some kind of “Accounts” page, where they can input their name and/or change the value of a flag.This information can be saved in the database as a separate entity
UserData, preferably alond with useremailoruser_idreceived from theUserclass. Something along the lines of: