π€Headers
Headers can be added by using the headers()
method on either the connector or the request. When you add headers to a connector instance, every request sent through that connector will merge those headers with the request. When you add headers to a request instance, it will just be added to that one request instance.
Default Headers
You may configure default headers on the connector or request using the protected defaultHeaders
method.
Default headers on a connector will be applied to every request. This is handy for providing specific headers like Content-Type or Accept.
Using Properties With Default Headers
You may also use properties in requests to populate headers, for example populating a username custom header.
Using the Headers Method
Saloon also offers a handy headers API to manage your headers easily after a request instance has been created. Use the headers()
method on your request to manage them. Headers added to the request are prioritised more than the connector's headers. This is useful for changing the headers before a request is sent.
When you have default headers to a connector, they won't be visible to the request instance as they are merged later in the request lifecycle. Still, request headers will have a higher priority than connector headers.
Available Methods
set(array $items)
Overwrite the headers on the request with a new array.
merge(...$items)
Merge arrays of headers.
remove(string $key)
Remove a given header by its key.
get(string $key, mixed $default = null)
Get a given header by its key or return the default.
all()
Retrieve all headers as an array.
isEmpty
Check if the header object is empty.
Click here to view the API reference for this method.
Last updated