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 メソッド -> JSON 応答本文を解析し、配列を返します

したがって、私の場合、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 に答える