php-CONNECT后从代理服务器收到HTTP代码403吗?
作者:互联网
在使用cUrl从我的网页生成销售线索时,我收到“ 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");
解决方法:
加
AllowCONNECT port[-port] [port[-port]] ...
下面的apache代理的httpd_proxy.conf中的ProxyRequests On
例如:
ProxyRequests On
AllowCONNECT 443 563 5000
5000是目标地址的端口.
标签:curl,ssl-certificate,php-openssl,php,salesforce 来源: https://codeday.me/bug/20191026/1934615.html