最佳答案
当服务器返回4xx 和5xx 状态码时,我想处理来自 Guzzle 的错误。我有个请求:
$client = $this->getGuzzleClient();
$request = $client->post($url, $headers, $value);
try {
$response = $request->send();
return $response->getBody();
} catch (\Exception $e) {
// How can I get the response body?
}
$e->getMessage
返回代码信息,但不返回 HTTP 响应的正文。如何获得响应正文?