gpt4 book ai didi

python - 在 Python 中检索浏览器 header

转载 作者:太空狗 更新时间:2023-10-29 17:55:57 26 4
gpt4 key购买 nike

我目前对如何在 Python Tornado 中获取用户的当前浏览器 header 信息一头雾水?例如,在 PHP 中,您可以简单地查看 $_SERVER 数据。 Tornado 的替代方案是什么?

备注:How do I get the client IP of a Tornado request?并且“请求”对我不起作用。

最佳答案

这是一个基于我的服务器的片段,我们从请求中检索一些 header 数据:

class api(tornado.web.RequestHandler):
def initialize(self, *args, **kwargs):
self.remote_ip = self.request.headers.get('X-Forwarded-For', self.request.headers.get('X-Real-Ip', self.request.remote_ip))
self.using_ssl = (self.request.headers.get('X-Scheme', 'http') == 'https')
def get(self):
self.write("Hello " + ("s" if self.using_ssl else "") + " " + self.remote_ip)

关于python - 在 Python 中检索浏览器 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9420886/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com