错误(56):使用PHP从对等方接收来自rest API post方法请求的数据时失败

时间:2016-12-13 10:00:52

标签: php rest api curl token

响应应该是XML,但我在使用标头向REST API发送请求时收到(56): Failure when receiving data from the peer之类的错误,以下是根据客户端的示例请求

POST http://api.toyotautrust.in/1.0/olx/inventory HTTP/1.1
User-Agent: Fiddler
Authorization: Token ******-****-****-****-***********
Host: api.toyotautrust.in
Content-Length: 52

这是我使用cURL

用PHP编写的请求代码
$headers1=[
'POST /1.0/olx/inventory HTTP/1.1',
        'Host: api.toyotautrust.in',
        'User-Agent: Fiddler',
        'Authorization: Token' .$atoken1,
        'Content-Length: 52'];
$ch1 = curl_init();
curl_setopt($ch1, CURLOPT_URL, 'http://api.toyotautrust.in/1.0/olx/inventory');
curl_setopt($ch1, CURLOPT_POST, true);
curl_setopt($ch1, CURLOPT_HEADER, true);
curl_setopt($ch1, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch1, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch1, CURLOPT_HTTPHEADER,$headers1);
$response1 = curl_exec($ch1);
print_r($response1);
$status_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo $status_code1;

1 个答案:

答案 0 :(得分:0)

我无法在POST请求中发送这两个标头

'User-Agent:Fiddler',
"Content-length: 0",

添加这两个标题后,它运行正常。在将请求发送到服务器之前,请向服务器端人员询问标题和参数