Django/Python 如何获取完整的请求头?
我一直在寻找有关此问题的信息,并发现了一些有关拒绝访问特定用户代理的信息,但找不到如何实际获取完整的请求标头。我正在尝试制作一个定制的分析应用程序,因此希望访问完整的标题..任何信息都会受到赞赏。
I've been looking over what I can find about this and found something about denying access to specific user-agents but couldn't find how I can actually get the full request header. I am trying to make a customized analytics app so would like access to the full headers.. any info is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有标头都可以在
request.META
中找到。请参阅文档。All the headers are available in
request.META
. See the documentation.