https://salesgenie.com/brandingservice/details?url=att.salesgenie.comで .NET RESTful Web サービスへの単純な get 呼び出しを作成しようとしています cURL 呼び出しを行うテスト ページはhttps://testにあります-cms.salesgenie.com/wp-content/themes/salesgenie/branding-proxy.php Web サービスはブラウザーで呼び出すことができますが、cURL 経由で呼び出すとタイムアウトになります。branding-proxy.php ページのコードは次のとおりです。
if (!function_exists('curl_init')){
die('Sorry cURL is not installed!');
}
$url = 'https://salesgenie.com/brandingservice/details?url=att.salesgenie.com';
$handle = curl_init();
curl_setopt($handle, CURLOPT_URL, $url);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($handle, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($handle, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($handle, CURLOPT_SSLVERSION,3);
$response = curl_exec($handle);
$code = curl_getinfo($handle, CURLINFO_HTTP_CODE);
curl_close($handle);
setcookie('CmsCookie', $code . ' ' . $response, 0, '/', 'salesgenie.com', 0);
echo 'Code:' . $code."<br />Response: ".$response;