<?php
$json_string = file_get_contents("https://user:password@domain.com");
if (empty($json_string))
{
echo "failed to get API";
}
else
{
echo "success";
}
?>
This worked before, but ntlm has been added since and it no longer can hit that json.
Any idea what needs to be done to get it working with ntlm? Thanks