Здравствуйте, есть вот такой скрипт:
$api_key = '1eca5269-8dc3-4bf4-a21c-b20cb9d9b4b3'; // Для простой проверки
$api_url = '
testeduapi.repetit.ru/api... // Куда отправлять
$post_fields = array (
'ContactName' => 'Тест',
'Phone' => '111111111111',
'AreaId' => '3'
);
$post_headers = array(
'Content-Type:application/json',
'Content-Length:'.strlen(json_encode($post_fields)),
'api-key:'.$api_key
);
$curl = curl_init($api_url);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($post_fields));
curl_setopt($curl, CURLOPT_HTTPHEADER, $post_headers);
$json_response = curl_exec($curl);
$curl_errorno = curl_errno($curl);
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
echo "response: " . $json_response; // Выводим ответ
curl_close($curl);
Он не работает почему-то( Скрипт доходит до места вывода ответа и выводит просто "response: " т.е. даже сам ответ я не получаю( Кто поможет разобраться? Сколько будет стоить?