处理 Guzzle 异常并获取 HTTP 正文咕噜咕噜 6.x咕噜咕噜 3.x
我想在服务器返回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 响应的正文。如何获取响应正文?