指定请求命令以使用Guzzle PHP

时间:2016-01-26 20:32:19

标签: curl guzzle

我目前正在使用IBM API,并尝试使用Concept Insights Api创建语料库。

我正在使用Guzzle 6.x并尝试实现此目的,需要运行的curl命令是:

curl -u user:password -X PUT -d '{}' 'https://gateway.watsonplatform.net/concept-insights/api/v2/corpora/xyz123/testCorpus'

我正在做的是以下

$this->getGuzzleClient()->request('PUT', 'v2/accounts', ['auth' => ['username', 'password']]);

  • base_uri已正确设置。
  • 身份验证是正确的

我从IBM获得的回复是:

resulted in a '400 Bad Request' response: "error":"invalid corpus format",

0 个答案:

没有答案