【发布时间】:2014-05-14 11:36:45
【问题描述】:
我正在尝试构建一个端点,将传递给它的数据转发到使用 Slim PHP 框架的 API,但我无法从 Guzzle 请求中获取响应。
$app->map( '/api_call/:method', function( $method ) use( $app ){
$client = new GuzzleHttp\Client([
'base_url' => $app->config( 'api_base_url' ),
'defaults' => [
'query' => [ 'access_token' => 'foo' ],
]
]);
$request = $client->createRequest( $app->request->getMethod(), $method, [
'query' => $app->request->params()
]);
var_dump( $client->send( $request )->getBody() );
})->via( 'GET', 'POST', 'PUT', 'PATCH', 'DELETE' )->conditions( [ 'route' => '.+?' ] );`
然后这给了我...
object(GuzzleHttp\Stream\Stream)[59]
private 'stream' => resource(72, stream)
private 'size' => null
private 'seekable' => boolean true
private 'readable' => boolean true
private 'writable' => boolean true
private 'meta' =>
array (size=6)
'wrapper_type' => string 'PHP' (length=3)
'stream_type' => string 'TEMP' (length=4)
'mode' => string 'w+b' (length=3)
'unread_bytes' => int 0
'seekable' => boolean true
'uri' => string 'php://temp' (length=10)
...而不是我期待的“酷”的回应。
如果我只是 var_dump $client->sendRequest( $request ) 我会得到 200 OK,并且 url 是我所期望的,http://localhost:8000/test?access_token=foo。
我有另一个请求,但只使用了$client->post(...),它可以正常工作而没有给我返回流的东西。
我尝试使用底部的示例 (http://guzzle.readthedocs.org/en/latest/http-client/response.html) 读取流,但它告诉我 feof 不存在。
有人知道我在这里遗漏了什么或做错了什么吗?
【问题讨论】: