问题:
如何使用 Guzzle 正确发送包含 JSON 数据的 POST 请求?下面的代码会导致内部服务器错误响应:
$request = $this->client->post(self::URL_REGISTER, [ 'content-type' => 'application/json', ], [json_encode($_POST)]);
答案:
使用 Guzzle 版本 5 或更高版本,您可以在 POST 请求中发送 JSON 数据如下:
use GuzzleHttp\Client; $client = new Client(); // Use GuzzleHttp\RequestOptions::JSON $response = $client->post('url', [ GuzzleHttp\RequestOptions::JSON => ['foo' => 'bar'], ]); // or use 'json' $response = $client->post('url', [ 'json' => ['foo' => 'bar'], ]);
Guzzle 文档提供了有关 JSON 请求的更多详细信息选项。
以上是如何使用 Guzzle 发布 JSON 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!