我正在使用 GuzzleHttp 向外部 api 发送请求并获取响应,但返回的响应在数据中为空。当我在高级休息客户端中测试 uri 和参数时, 我得到一个数据,那么为什么 Guzzle 响应是空的?!如果可以,请你帮助我。
这是我的代码:
public function index($id)
{
$client = new Client(['base_uri' => 'http://qpeople.me/']);
$response=$client->post('profileinfo', [
'json'=>[
'tshirtID'=>$id
]
]);
$body=$response->getBody();
dd($body);
return view('profile');
}