0

我正在尝试在https://salesgenie.com/brandingservice/details?url=att.salesgenie.com对 .NET RESTful Web 服务进行简单的调用 进行 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;
4

1 回答 1

0

我可以看到超时发生在使用您的链接时,尽管我认为问题发生在其他地方。我得出这个结论的原因是我将您的代码上传到了我自己的网站。它工作得很好。

重要的

如果您是所有者,salesgenie.com那么我认为您的服务器有问题,因为有时我得到的响应是超时(代码 0)、代码 200(有结果)或代码 320。所以问题可能是内部问题服务器本身。

技巧

  • 尝试删除以setcookie进行一些处理。
  • 也尝试使用http而不是https因为https需要更多处理才能使用。
于 2013-08-12T18:33:23.033 回答