如何使用 Guzzle 以 JSON 格式发送 POST 请求?
有谁知道JSON使用的正确方法吗?post
Guzzle
$request = $this->client->post(self::URL_REGISTER,array(
'content-type' => 'application/json'
),array(json_encode($_POST)));
我收到来自服务器的响应。它使用Chrome工作。internal server error
Postman