en.javascript.info/5-network/05-fetch-crossorigin/1-do-we-need-origin/task.md
Alejandro Martín Parra dc46fa881b
Is it
2019-08-31 16:49:41 +02:00

28 lines
710 B
Markdown

importance: 5
---
# Why do we need Origin?
As you probably know, there's HTTP-header `Referer`, that usually contains an url of the page which initiated a network request.
For instance, when fetching `http://google.com` from `http://javascript.info/some/url`, the headers look like this:
```
Accept: */*
Accept-Charset: utf-8
Accept-Encoding: gzip,deflate,sdch
Connection: keep-alive
Host: google.com
*!*
Origin: http://javascript.info
Referer: http://javascript.info/some/url
*/!*
```
As you can see, both `Referer` and `Origin` are present.
The questions:
1. Why `Origin` is needed, if `Referer` has even more information?
2. Is it possible that there's no `Referer` or `Origin`, or is it incorrect?