I am developing a web system on the google app engine. I would like to create an administrator account for the system such that he/she may login to set various system settings. But how do I create such an account in the first place? Thanks.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
EDIT: If you provide functionality within your app for administrators, you can:
|
|||||||
|
|
The easiest way to authenticate users in a GAE app is to use the built in UserService. You can protect pages in two ways:
Note that you can choose to allow users to log in using this built in service with either OpenId or only Google Apps accounts. If you want to allow something else like Facebook authentication or your own username/password then you will need to build something more elaborate. |
|||
|
|
