curl Не удалось подключиться Соединение отклонено - PullRequest
1 голос
/ 01 апреля 2019

Я пытаюсь соединиться с curl на сервере, на котором установлен wamp, но я получаю отказано в соединении Failed to connect to centrala.ratt.ro port 47654: Connection refused, и я не знаю почему. Если я захожу по ссылке в браузере, она работает, с php curl она не работает. Вот мой код:

$url = "http://centrala.ratt.ro:47654/webhook/coordonate.php"; 



$ch = curl_init();
curl_setopt($ch, CURLOPT_PORT, 47654);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode ($result));
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, 0);

// This should be the default Content-type for POST requests
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-type: application/json"));

$rezult = curl_exec($ch);
echo $rezult;
if(curl_exec($ch) === false)
{
    echo 'Curl error: ' . curl_error($ch);
}
else
{
    echo 'Operation completed without any errors';
}

curl_close($ch);

1 Ответ

0 голосов
/ 01 апреля 2019

Посмотрел на https://gustavostraube.wordpress.com/2016/08/31/debugging-requests-with-curl/;

/*
 * We're going to use the output buffer to store the debug info.
 */
ob_start();
$out = fopen('php://output', 'w');

$handler = curl_init($url);

/*
 * Here we set the library verbosity and redirect the error output to the 
 * output buffer.
 */
curl_setopt($handler, CURLOPT_VERBOSE, true);
curl_setopt($handler, CURLOPT_STDERR, $out);
curl_setopt($handler, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($handler);
fclose($out);
/*
 * Joining debug info and response body.
 */
$data = ob_get_clean();
$data .= PHP_EOL . $response . PHP_EOL;
echo $data;

Просмотр / публикация вывода для $ out для определения следующих шагов; Если вы можете, вы должны попытаться запустить curl в командной строке с параметрами '-vvv', чтобы получить похожий вывод.

...