0

在我发布的 API 发布了他们的 API 的最终版本之后,我遇到了 REST POST 请求的问题。它工作正常,并且有人告诉我,在新版本中,服务器对“应用程序/json”的类型更加严格。以下 cli curl 命令可以正常工作:

cat json.txt|curl -v -k -u user:password -F 'exchangeInstance=@-;type=application/json'  https://my.url.here

但是,我需要在代码中执行它。使用 php curl 库,我得到了一个简单的测试脚本,如下所示:

  $post = array(
    "exchangeInstance" => $json_string,
    "type" => "application/json",
  );
  $url = 'myurlhere';

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
  curl_setopt($ch, CURLOPT_USERPWD, "user:pass");
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_POSTFIELDS, $post);

  $result = curl_exec($ch);
  $info = curl_getinfo($ch);

  var_dump($post);
  var_dump($result);
  echo $result;
  var_dump($info);

当我阅读文档时,如果我将数组作为 CURLOPT_POSTFIELDS 传递,标题中的 Content-type 应自动设置为“multipart/form”,然后我将元素传递的类型设置为“application/json”数组。

但是,该 api 没有收到我的 POST 请求。我从他们那里得到一个错误,清楚地表明他们正在接收一个 GET 请求。这怎么可能?我错过了什么?

4

1 回答 1

1

卷曲-F!==-d

$post = array(
    "exchangeInstance" => sprintf('@%s;type=application/json', $json_string),   
);
于 2013-02-21T19:48:21.970 回答