Почитав почти с 10-ток форумов, было принято решение отказаться от CURL, т.к. при обращении к localhost, CURL часто ведёт себя не так как планировалось.
В итоге, реализовали через Http Request:
$url = 'http://192.168.0.162/BlaBlaBla/authorization';
$options = array(
'http' => array(
'header' => "Content-Type: application/x-www-form-urlencoded\r\n",
'header' => "Authorization: Basic AbCdEfGhIjHk13452653765==",
'method' => 'POST',
),
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
var_dump($result);