来自Android浏览器的<video>标记请求的请求标头中没有Referer

时间:2016-10-31 02:33:16

标签: android html video http-headers http-referer

对于某些商家,我们必须检查请求标头,如果 Referer 是某个域的原创。

但我们发现Android浏览器的视频请求标题中没有 Referer

>>> from pprint import pprint
>>> pprint(list(possibilities('1----0', 3)
['1---00',
 '1---10',
 '1--0-0',
 '1--1-0',
 '1-0--0',
 '1-1--0',
 '10---0',
 '11---0']

如何使标题包含 Referer

1 个答案:

答案 0 :(得分:2)

添加到您网页的<head>

<meta name="referrer" content="always">

http://smerity.com/articles/2013/where_did_all_the_http_referrers_go.html