Guzzle 5 - 在 ServerException 上获取响应主体
Guzzle 5 - Get Response Body on ServerException
我正在使用 Guzzle(最新的 5.2)对服务器进行 POST 调用。此服务器上的 API returns 一个 "HTTP/1.1 500 Internal Server Error" 响应,也是 returns 一个正文。如何访问异常响应的主体?
以下是我使用 curl -v:
执行 POST 时得到的结果
* upload completely sent off: 826 out of 826 bytes
< HTTP/1.1 500 Internal Server Error
< Date: Tue, 24 Feb 2015 01:57:10 GMT
* Server Apache-Coyote/1.1 is not blacklisted
< Server: Apache-Coyote/1.1
< Content-Type: application/xml
< Content-Length: 154
< Connection: close
<
* Closing connection 0
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><addressList xmlns:ns2="http://addresslistserver.c2m.com/"><status>9</status><lists/></addressList>
我发现了一个解决方案:
$exception->getResponse()->getBody()
我可以发誓我几个小时前就试过了,但没用,但我想不行。
我正在使用 Guzzle(最新的 5.2)对服务器进行 POST 调用。此服务器上的 API returns 一个 "HTTP/1.1 500 Internal Server Error" 响应,也是 returns 一个正文。如何访问异常响应的主体?
以下是我使用 curl -v:
执行 POST 时得到的结果* upload completely sent off: 826 out of 826 bytes
< HTTP/1.1 500 Internal Server Error
< Date: Tue, 24 Feb 2015 01:57:10 GMT
* Server Apache-Coyote/1.1 is not blacklisted
< Server: Apache-Coyote/1.1
< Content-Type: application/xml
< Content-Length: 154
< Connection: close
<
* Closing connection 0
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><addressList xmlns:ns2="http://addresslistserver.c2m.com/"><status>9</status><lists/></addressList>
我发现了一个解决方案:
$exception->getResponse()->getBody()
我可以发誓我几个小时前就试过了,但没用,但我想不行。