Open In App

HTTP headers | Origin

The Origin HTTP Header is a response HTTP header that indicates the security contexts that initiates an HTTP request without indicating the path information. The Origin header is added by the browser and can not be controlled by the user.

Syntax:



Origin: <scheme> "://" <hostname> ":" <port> 

Directives:

Examples:

Origin: null

This means that there is no origin for the service requested.

Origin: https://www.geeksforgeeks.org

This means that the origin if the service requested exists and has https as the scheme and www.geeksforgeeks.org as the hostname.

Supported Browsers The following browsers are compatible with HTTP Origin:

Article Tags :