我想更新一个组,所以我使用put方法发送json p.e. {"管理":1,"用户":0}。
$response = $this->_client->put("http://10.10.10.10.xip.io/groups/29")->send();
我已尝试将其添加到网址但没有运气。我似乎无法在后端抓住它。 请记住,我在后面使用Laravel。先谢谢你们。
答案 0 :(得分:0)
Guzzle:
$this->_client
->put($this->_requestUrl, array(), json_encode($this->_restObject))
->send();
Laravel
Input::json()->all()