如何在Google App Engine webapp2请求处理程序中获取HTTP标头

时间:2013-05-14 06:42:50

标签: python google-app-engine http-headers

如何访问调用此方法的请求的http标头?

class GetDBVersion(webapp2.RequestHandler):
    def get(self):
# writes out db version
在main.py中

app = webapp2.WSGIApplication([
    ('/version', GetDBVersion
      # and more methods

1 个答案:

答案 0 :(得分:6)

使用webapp2.RequestHandler在类中执行此操作。

  

self.request.headers

它会给你一个标题的字典。