2

我有一个使用这种方法的小 php api 客户端:

private function send($endpoint)
{
    $headers = array();
    $body = $this->xmlSerialiser->convertToXML($this->getQueue());

    try {
        $response = json_decode(
            $this->guzzleClient->post(
                $endpoint,
                $headers, $body
            )
            ->send()
            ->json()
        );

    } catch (\Guzzle\Http\Exception\BadResponseException $e) {
        $response = array('Error' => $e->getMessage());
    }

    return $response;
}

我总是收到

Unable to parse response body into JSON: 4 (500 Internal Server Error)

我已经尝试了解服务器响应的示例,并且似乎很好:

echo (string) $this->guzzleClient->post(
                $endpoint,
                $headers, $body
            )
            ->send()->getBody();

这是结果:

<Messages xmlns="http://www.example.com/xxx/3.0">

<GetAccountResponse RequestType="GetAccount">

    <AccountId>xxxx-xxx-xxx-xxxx-xxxx</AccountId>

    <Token>xxxxxxxxxxxxxx/t3VkEJXC7f6b6G4yPJSZ5QfT2hdSQXUmi0e8cndSYLK4N7mswRHifzwGHLUJYHM17iGL8s=</Token>

</GetAccountResponse>

4

2 回答 2

1

我自己回答

Guzzle 文档说:json method -> Parse the JSON response body and return an array

所以在我的情况下,我需要将 json 方法切换为 xml(因为响应是 xml)。

最后是这样的结果:

private function send($endpoint)
{
    $headers = array();
    $body = $this->xmlSerialiser->convertToXML($this->getQueue());

    try {
        $response = (array)(
            $this->guzzleClient->post(
                $endpoint,
                $headers, $body
            )
            ->send()
            ->xml()
        );
    } catch (\Guzzle\Http\Exception\BadResponseException $e) {
        $response = array('Error' => $e->getMessage());
    }

    return $response;
}
于 2013-09-20T15:45:05.700 回答
1

使用以下代码。

 $response->getBody()->getContents() 
于 2016-07-28T10:17:39.327 回答