Guzzlehttp-Guzzle 6에서 응답 본문을 얻는 방법은 무엇입니까?


163

회사에서 개발중인 API 주위에 래퍼를 작성하려고합니다. 편안하고 Postman을 사용하여 http://subdomain.dev.myapi.com/api/v1/auth/POST 데이터로 사용자 이름과 비밀번호 를 사용하여 엔드 포인트에 게시 요청을 보낼 수 있으며 토큰이 반환됩니다. 모든 예상대로 작동합니다. 이제 PHP에서 동일한 작업을 수행하려고하면 GuzzleHttp\Psr7\Response객체를 다시 가져 오지만 Postman 요청으로했던 것처럼 내부에서 토큰을 찾을 수없는 것 같습니다.

관련 코드는 다음과 같습니다.

$client = new Client(['base_uri' => 'http://companysub.dev.myapi.com/']);
$response = $client->post('api/v1/auth/', [
    'form_params' => [
        'username' => $user,
        'password' => $password
    ]
]);

var_dump($response); //or $resonse->getBody(), etc...

위의 코드 출력은 다음과 같습니다 (경고, 들어오는 벽).

object(guzzlehttp\psr7\response)#36 (6) {
  ["reasonphrase":"guzzlehttp\psr7\response":private]=>
  string(2) "ok"
  ["statuscode":"guzzlehttp\psr7\response":private]=>
  int(200)
  ["headers":"guzzlehttp\psr7\response":private]=>
  array(9) {
    ["connection"]=>
    array(1) {
      [0]=>
      string(10) "keep-alive"
    }
    ["server"]=>
    array(1) {
      [0]=>
      string(15) "gunicorn/19.3.0"
    }
    ["date"]=>
    array(1) {
      [0]=>
      string(29) "sat, 30 may 2015 17:22:41 gmt"
    }
    ["transfer-encoding"]=>
    array(1) {
      [0]=>
      string(7) "chunked"
    }
    ["content-type"]=>
    array(1) {
      [0]=>
      string(16) "application/json"
    }
    ["allow"]=>
    array(1) {
      [0]=>
      string(13) "post, options"
    }
    ["x-frame-options"]=>
    array(1) {
      [0]=>
      string(10) "sameorigin"
    }
    ["vary"]=>
    array(1) {
      [0]=>
      string(12) "cookie, host"
    }
    ["via"]=>
    array(1) {
      [0]=>
      string(9) "1.1 vegur"
    }
  }
  ["headerlines":"guzzlehttp\psr7\response":private]=>
  array(9) {
    ["connection"]=>
    array(1) {
      [0]=>
      string(10) "keep-alive"
    }
    ["server"]=>
    array(1) {
      [0]=>
      string(15) "gunicorn/19.3.0"
    }
    ["date"]=>
    array(1) {
      [0]=>
      string(29) "sat, 30 may 2015 17:22:41 gmt"
    }
    ["transfer-encoding"]=>
    array(1) {
      [0]=>
      string(7) "chunked"
    }
    ["content-type"]=>
    array(1) {
      [0]=>
      string(16) "application/json"
    }
    ["allow"]=>
    array(1) {
      [0]=>
      string(13) "post, options"
    }
    ["x-frame-options"]=>
    array(1) {
      [0]=>
      string(10) "sameorigin"
    }
    ["vary"]=>
    array(1) {
      [0]=>
      string(12) "cookie, host"
    }
    ["via"]=>
    array(1) {
      [0]=>
      string(9) "1.1 vegur"
    }
  }
  ["protocol":"guzzlehttp\psr7\response":private]=>
  string(3) "1.1"
  ["stream":"guzzlehttp\psr7\response":private]=>
  object(guzzlehttp\psr7\stream)#27 (7) {
    ["stream":"guzzlehttp\psr7\stream":private]=>
    resource(40) of type (stream)
    ["size":"guzzlehttp\psr7\stream":private]=>
    null
    ["seekable":"guzzlehttp\psr7\stream":private]=>
    bool(true)
    ["readable":"guzzlehttp\psr7\stream":private]=>
    bool(true)
    ["writable":"guzzlehttp\psr7\stream":private]=>
    bool(true)
    ["uri":"guzzlehttp\psr7\stream":private]=>
    string(10) "php://temp"
    ["custommetadata":"guzzlehttp\psr7\stream":private]=>
    array(0) {
    }
  }
}

Postman의 결과는 다음과 같습니다.

{
    "data" : {
        "token" "fasdfasf-asfasdfasdf-sfasfasf"
    }
}

분명히 Guzzle에서 응답 객체로 작업하는 것과 관련하여 뭔가 빠졌습니다. Guzzle 응답은 요청시 200 상태 코드를 나타내므로 반환 된 데이터를 검색하기 위해 어떻게 해야하는지 확실하지 않습니다.


33
$response->getBody()->getContents()작동하지 않습니까?
Federkun

답변:


437

Guzzle은 PSR-7을 구현 합니다. 이는 기본적으로 PHP 임시 스트림을 사용 하는 Stream에 메시지 본문을 저장한다는 의미입니다 . 모든 데이터를 검색하려면 캐스팅 연산자를 사용할 수 있습니다.

$contents = (string) $response->getBody();

당신은 또한 그것을 할 수 있습니다

$contents = $response->getBody()->getContents();

두 가지 접근 방식의 차이점 getContents은 나머지 내용 을 반환하므로 두 번째 호출은 rewind또는로 스트림의 위치를 ​​찾지 않으면 아무것도 반환하지 않습니다 seek.

$stream = $response->getBody();
$contents = $stream->getContents(); // returns all the contents
$contents = $stream->getContents(); // empty string
$stream->rewind(); // Seek to the beginning
$contents = $stream->getContents(); // returns all the contents

대신, PHP의 문자열 캐스팅 작업을 사용하여 처음부터 끝까지 스트림에서 모든 데이터를 읽습니다.

$contents = (string) $response->getBody(); // returns all the contents
$contents = (string) $response->getBody(); // returns all the contents

설명서 : http://docs.guzzlephp.org/en/latest/psr7.html#responses


5
getContents 함수는 Guzzle 6 문서의 작은 부분에만 있습니다 (스트림 섹션에 있음). 당신은 많은 수색에서 나를 구했습니다.
Maximus

58
감사합니다. 문서에서 이것이 더 명확하지 않다는 것은 믿기지 않습니다. 공식 문서 ( docs.guzzlephp.org/en/latest ) 조차도 $ res-> getBody ()를 호출하면 일반적으로 기대하는 것을 반환하는 것처럼 보입니다.
John

24
그들은 공식 문서에 메모 나 통지와 같은 것을 넣어야합니다. 이 문제로 이틀을 낭비했습니다.
cwhsu

+1 Guzzle 문서에 잘못 설명 되어 "you can pass true to this method [getBody()] to retrieve the body as a string."있습니다. Guzzle 6을 사용하면 작동하지 않지만 문자열로 캐스팅하거나 getContents ()를 사용하면 작동합니다.
Magnus 승

8
json_decode를 사용할 수도 있습니다. 예를 들어 응답을 래핑 json_decode($response, true);하면 배열이 반환됩니다.
Sygon

13

JSON을 다시 기대하는 경우 가장 간단한 방법은 다음과 같습니다.

$data = json_decode($response->getBody()); // returns an object

// OR

$data = json_decode($response->getBody(), true); // returns an array

json_decode()자동으로 본문을 전송 string하므로 호출 할 필요가 없습니다 getContents().


1
이 답변이 더 주목을받는 이유는 무엇입니까 ??? 이것이 바로 내가 필요한 것입니다. 감사합니다 @MaskimIvanov
Eric McWinNEr

그것은 나에게 가장 간단하고 쉬운 일이었습니다. 감사합니다
Alator
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.