Привет, пожалуйста, помогите, как получить предложения с помощью cURL.
if (!function_exists('curl_init')){
die('Sorry cURL is not installed!');
}
$api_token = 'token-here';
// Deal title and Organization ID
$Url = 'https://api.pipedrive.com/v1/deals?api_token=' . $api_token;
//$Url = 'http://www.example.org/';
// OK cool - then let's create a new cURL resource handle
$ch = curl_init();
// Now set some options (most are optional)
//$Url = 'http://www.example.org/';
// Set URL to download
curl_setopt($ch, CURLOPT_URL, $Url);
// Set a referer
curl_setopt($ch, CURLOPT_REFERER, "http://www.example.org/yay.htm");
// User agent
curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0");
// Include header in result? (0 = yes, 1 = no)
curl_setopt($ch, CURLOPT_HEADER, 0);
// Should cURL return or print out the data? (true = return, false = print)
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Timeout in seconds
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
// Download the given URL, and return output
$output = curl_exec($ch);
// Close the cURL resource, and free system resources
curl_close($ch);
echo $Url;
var_dump($output);возникла проблема с невозможностью получения результата от Pipedrive с использованием URL-адреса API. на cURL тоже нет ошибок. но если «http://www.example.org/» как $Url, то он покажет результаты.
да, это один из вариантов, однако мне также нужно опубликовать поля в pipedrive. я уже следил за этим документом здесь pipedrive.readme.io/v1.0/docs/создание-сделки, но не повезло.
получил сообщение об ошибке curl «ошибка: 1407742E: подпрограммы SSL: SSL23_GET_SERVER_HELLO: версия протокола оповещения tlsv1»
Возможный дубликат stackoverflow.com/questions/51366429/php-curl-error-on-ssl-pвозраст
спасибо 04FS и Прасанту.






для простого вызова URL-адреса API используйте
file_get_contents('url')вместо curlfile_get_contents('https://api.pipedrive.com/v1/deals?api_token=' . $api_token)