pipedrive API с использованием CURL - PullRequest
0 голосов
/ 06 марта 2019

привет, пожалуйста, помогите, как получить предложения, используя 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, то это покажет результаты.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...