我正在尝试使用guzzle http从外部api提取数据。这是我的代码
$res = $client->request('GET', 'api/endpoint/');
$contents = $res->getBody()->getContents();
return $contents->slots; // THIS LINE GIVES ME ERROR. TRYING TO ACCESS THE SLOT.
我刚返回$contents like this return $contents
我想访问slots
。
任何人都可以帮忙吗?谢谢