作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的应用程序在 GAE 上,我正在尝试找出如何防止在 Python 中动态提供图像(例如/image?id=E23432E)的热链接。请指教。
最佳答案
在 Google webapp 框架中,您可以从 Request class 中提取 referer :
def get(self):
referer = self.request.headers.get("Referer")
# Will be None if no referer given in header.
请注意,这是 referer
,而不是 referrer
(参见 this dictionary entry)。
关于python - 如何在 Google App Engine 中实现防盗链,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/903144/
我是一名优秀的程序员,十分优秀!