Per Request Headers
Sometimes you want just this one request to have headers different from the default headers. Halchemy makes this easy. You use the with headers
method. This method takes a dictionary/object of headers to set for this request. Here is an example:
Headers added to a request this way are merged with the default headers. That is, all default headers continue to be included in the request, and the headers you specify are also included. If you add a header to the request that already exists in the default header, the value you specify will be used for this request only.