I need to send the following header with my httpRequest:
'X-ABC-Reco-Token'=>'a0d15977';
I have the following code:
$array = array("X-ABC-Reco-Token"=>$token);
$this->request->setHeaders($array);
echo var_dump($this->request->getHeaders());
however, this is the output I get:
"X-Abc-Reco-Token"=>string 'a0d15977'
Note that PHP converted X-ABC to X-Abc.
Is there a way I can force the header to be the case I want?