如何使用Guzzle以JSON发送POST请求?

有人知道post使用JSON 的正确方法Guzzle吗?

$request = $this->client->post(self::URL_REGISTER,array(

'content-type' => 'application/json'

),array(json_encode($_POST)));

internal server error从服务器收到响应。它可以使用Chrome浏览器Postman

回答:

对于 :

这是原始的发布请求,因此将JSON放入正文即可解决问题

$request = $this->client->post($url,array(

'content-type' => 'application/json'

),array());

$request->setBody($data); #set body!

$response = $request->send();

return $response;

以上是 如何使用Guzzle以JSON发送POST请求? 的全部内容, 来源链接: utcz.com/qa/425241.html

回到顶部