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.
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- Where is the best place to put one-time and every-
- facebook “could not retrieve data from URL”
相关文章
- Is there a size limit for HTTP response headers on
- appcfg.py command not found
- Google app engine datastore string encoding proble
- Angular route not working when used with Google Ap
- Doctrine not finding data on Google App Engine?
- Using OkHttp client via OKClient on Google App Eng
- Google appEngine: 404 when accessing /_ah/api [dup
-
Google App Engine Error:
INVALID_ARGUMENT
One can add members to a Google Cloud project (App Engine included) and assign roles via the Google Cloud Console, section IAM & ADMIN (as of December 2016):
https://console.cloud.google.com/iam-admin
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.
EDIT:
If you provide functionality within your app for administrators, you can:
Google App Engine, you want to add a second app owner or other more limited access.
Log in to the console, go to IAM & admin tab with your project selected. Go to IAM on the left panel, select Add (top), in the slide-in enter the new members email, and select the role(s) you want to give them (Project Owner) and Save. They get an email and can accept the new role. You don't need to sign up for the full blown IAM identity & Organization.