I'm creating admin panel for my GAE application.
Here is part of my app.yaml
- url: /admin/.*
script: admin.application
login: admin
- url: /.*
script: myApp.application
And Here is part of my my admin.py:
class AdminPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello, Admin')
application = webapp2.WSGIApplication([
('/', AdminPage),
], debug=True)
If I'm not logged in I get "Current logged in user [email protected] is not authorized to view this page." message, which is what I wanted.
I get 404 error when I try to go to myApp/admin/ while logged in as admin and I don't know how to solve this.
It looks like your application doesn't have a rule for
/admin/
. You'll need to change yourapplication
to this:When you go to
/admin/
, thelogin: admin
part of yourapp.yaml
shows the login error before it ever hits youradmin.py
file if you're not logged in. When you are logged in, the application tries to find a url matching/admin/
, but the only configured url is/
.