当前位置:首页 > PHP教程 > php高级应用 > 列表

php curl调用接口显示HTTP Status 415如何解决

发布:smiling 来源: PHP粉丝网  添加日期:2018-10-19 13:32:24 浏览: 评论:0 

使用php curl的方式调用对方提供的接口,收到了如下错误提示

HTTP Status 415

The server refused this request because the request entity is in a format not supported by the requested resource for the requested method.

Curl 的代码片段如下:

  1. $ch = curl_init(); 
  2. curl_setopt($ch, CURLOPT_URL, $url); 
  3. curl_setopt($ch, CURLOPT_HEADER, FALSE); 
  4. curl_setopt($ch, CURLOPT_NOBODY, FALSE); 
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); 
  6. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); 
  7. curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE); 
  8. curl_setopt($ch, CURLOPT_TIMEOUT, 120); 
  9. curl_setopt($ch, CURLOPT_POST, TRUE); 
  10. curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($postData)); 
  11.  
  12. $data = curl_exec($ch); 
  13. curl_close($ch); 

多次检查curl设置已经接口的说明没有发现问题。对方的服务器使用的是Tomcat 7, 一度怀疑是对方web配置有误,后来仔细研究文档,其中提到Response是jason格式文档,而上述curl中没有指定Request Header 信息, 所以尝试加入一个header, 结果问题解决。 代码如下:

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json; charset=utf-8"));

Tags: curl调用接口 HTTP Status 415

分享到: