对于某些商家,我们必须检查请求标头,如果 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 ?
答案 0 :(得分:2)
添加到您网页的<head>
<meta name="referrer" content="always">
http://smerity.com/articles/2013/where_did_all_the_http_referrers_go.html