var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://httpbin.org', true);
xhr.send();
从example.org
运行上面这个简单代码时,Chrome devtools中的请求标头显示了这一点:
Host:httpbin.org
Origin:http://example.org
Referer:http://example.org
在Brave中运行相同的代码时,我得到了这个:
Host:httpbin.org
Origin:https://example.org
Referer:https://httpbin.org
我觉得推荐者与主机是一个错误相同,但也许我错过了一些东西。我应该报告这个吗?