内容类型不随 CURLOPT_HTTPHEADERS 改变

发布于 2024-10-22 19:12:47 字数 1394 浏览 3 评论 0 原文

我正在尝试使用 cURL 将一些 JSON 发布到 Web 服务,使用以下代码:

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_VERBOSE, true);
curl_setopt($ch, CURLOPT_URL, 'http://index.yolink.com/index/define?o=json&ak=APIKEY');
curl_setopt($ch, CURLOPT_HTTPHEADERS,array('Content-Type: application/json'));

$data = array(
  'ignore-robots' => 'false',
      'language' => 'english',
  'crawl-delay' => '0',
  'depth' => '3',
  'root' => array('url' => 'http://bartleby.com/')
);

curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$result=curl_exec($ch);
var_dump($result);

我得到以下回报:

<块引用>

string(282)“HTTP/1.1 200 OK 服务器:Apache-Coyote/1.1 Access-Control-Allow-Origin:* 内容类型:text/plain 内容长度:120 日期:2011 年 3 月 18 日星期五 19: 03:23 GMT {"code":"error.indexdefinition.invalid","message":"为 /define 提供的内容无效。错误:文件过早结束.."}"

我发现 这篇博客文章似乎是相关的——它似乎确实在发送text/plain,即使我已经指定了ContentTypeCURLOPT_HTTPHEADERS 中的 code> 作为 application/json。但添加 http_build_query 并没有帮助。

预先感谢您的任何帮助!

I'm trying to POST some JSON to a web service with cURL, using the following code:

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_VERBOSE, true);
curl_setopt($ch, CURLOPT_URL, 'http://index.yolink.com/index/define?o=json&ak=APIKEY');
curl_setopt($ch, CURLOPT_HTTPHEADERS,array('Content-Type: application/json'));

$data = array(
  'ignore-robots' => 'false',
      'language' => 'english',
  'crawl-delay' => '0',
  'depth' => '3',
  'root' => array('url' => 'http://bartleby.com/')
);

curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$result=curl_exec($ch);
var_dump($result);

I get the following in return:

string(282) "HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/plain Content-Length: 120 Date: Fri, 18 Mar 2011 19:03:23 GMT {"code":"error.indexdefinition.invalid","message":"Invalid content provided for /define. Error:Premature end of file.."}"

I found this blog post that seems to be related -- it does seem to be sending text/plain even though I've specified the ContentType in CURLOPT_HTTPHEADERS as application/json. But adding http_build_query hasn't helped.

Thanks in advance for any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

楠木可依 2024-10-29 19:12:47

我相信它应该是 HTTPHEADER,而不是 HTTPHEADERS

http://php.net/manual/en/function.curl-setopt.php

I believe it should be HTTPHEADER, not HTTPHEADERS.

http://php.net/manual/en/function.curl-setopt.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文