Подскажите, почему не принимает ответ, скрипт запускается, проходит 15 секунд, сервер возвращает ссылку на картинку, но у меня пишет
file_get_contents(http://185.250.207.195:8000/api/): failed to open stream: HTTP request failed!
сам скрипт
$url = 'http://185.250.207.195:8000/api/';
$body = array(
array(
'mail' => '+974587532616',
'password' => 'Parsertest',
'proxy' => '45.81.136.230:3000:6hZY5697:jJNXCcJT'
));
$context_options = array (
'http' => array (
'method' => 'POST',
'header'=> "Content-type: application/json",
'content' => json_encode($body)
)
);
$context = stream_context_create($context_options);
$result = file_get_contents($url, false, $context);
echo $result ;