How to process request with chain of webapp.RequestHandler

Posted by Konstantin on Stack Overflow See other posts from Stack Overflow or by Konstantin
Published on 2010-05-04T11:51:37Z Indexed on 2010/05/05 4:38 UTC
Read the original article Hit count: 281

GAE webapp allows to map single handler to a route:

application = webapp.WSGIApplication([
                                     ('/login', gae_handlers.UserLogin),
                                     ], debug=True)

Is there any way I can have a chain of request handlers?

I want to have handler which does authentication before all other handlers run.

© Stack Overflow or respective owner

Related posts about google-app-engine

Related posts about webapp