The Google App Engine provides a fairly easy way to create a private admin section for your web application.
1.
Your app.yamlURL handler can have a login option in your URL to restrict visitors to only those users who are logged in, or simply to those who are administrators of the application.
If the parameter login: admin, as soon as the user has logged in, the handler checks whether the user is the administrator for the application. Otherwise, the user is presented with an error message; if the user is an administrator, the handler continues.
Here is a snippet of app.yaml where routes are /admin/.*limited by administration:
- url: /admin/.*
script: admin.py
login: admin
2.
URL- , Dev , .
