Problem (2) in the Chunked-Encoded data解决

本文转载自:

http://www.windgreen.me/problem-2-in-the-chunked-encoded-data#more-382


今天遇到了一个很诡异的问题,是的,只能用诡异来形容。

原来服务器间用json通信,用curl发起请求,一直没问题,知道今天。。。。

Problem (2) in the Chunked-Encoded data!!!

更诡异的是,我用浏览器访问使用curl的页面没有问题,但是微信的接口调试工具一直报这个错误——也就是说,同样的函数,不同的访问,居然结果不同-_-|||

后来google了一下,在stackoverflow和github有人提到这个问题,并提出解决办法,但是原理还是不太清楚~~~


stackOverFlow curl_exec not working with Veeva Vault integration into CakePHP
Github “Problem (2) in the Chunked-Encoded data” while performing a CURL request


解决办法:

在curl_exec()之前添加

curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);


本文转载自:

http://www.windgreen.me/problem-2-in-the-chunked-encoded-data#more-382


这是今天我遇到的一个问题,同样的代码,在本机没问题,但是部署到服务器上,用curl_exec()就一直返回false,后来用 var_dump(curl_error($ch)); 查看错误原因才看到这个信息,上网查了一下,就找到这篇文章了,加上后确实解决了这个问题


你可能感兴趣的:(Problem (2) in the Chunked-Encoded data解决)