Как извлечь form_params из объекта Guzzle BadResponseException (ClientException || ServerException) Объект?
Я не смог найти его в документации.
try {
$reponse = $this->client->post($uri, [
'form_params' => $params,
'headers' => $this->getHeaders()
]);
} catch (RequestException $e){
/// get form_params here without accessing $params
}