我在使用来自我的网页的cUrl向salesforce生成销售线索时,收到“来自CONNECT后代理的56个接收的HTTP代码403”错误。该网站的SSL证书已过期。
更新:
我的代码如下:
curl_setopt($curl, CURLOPT_URL, $_url);
curl_setopt($curl, CURLOPT_POST, count($field));
curl_setopt($curl, CURLOPT_POSTFIELDS, $query_data);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($curl, CURLOPT_USERAGENT, "cusom module");
答案 0 :(得分:4)
添加
AllowCONNECT port[-port] [port[-port]] ...
apache proxy {/ p>中ProxyRequests On
下的httpd_proxy.conf
以下
例如:
ProxyRequests On
AllowCONNECT 443 563 5000
5000
是目的地址。