1

我将 Gazzle 6 与 Laravel 5.1 一起使用,并且从我正在使用的 API 返回我的数据时出现了一种奇怪的行为。这是我的代码:

$data = array(
    'id' => '112233'
);

$from = \Carbon\Carbon::now()->subDays(1)->format('d/m/Y');
$to = \Carbon\Carbon::now()->subMonths(1)->format('d/m/Y');

$first_report = $this->client->post('https://my.service.com/reporting/execute/', [
    'auth' => ['myemail@email.com', 'mypassword'],
    'form_params' => ['data' => json_encode($data)]
]);



$second_report = $this->client->get('mysecondservice.com/reports', [
    'query' => [
        'account_auth_token' => '000011122223333444455556667778889999',
        'start_date' => $to,
        'end_date' => $from
    ]
]);

return array(
    'first_report' => $first_report,
    'second_report' => $second_report
);

如果我将数据作为前一个数组返回,则first_reportsecond_report为空。但是如果我只返回例如

return $first_report;

或者

return $second_report;

每个报告的数据都正确返回,但我不知道那里有什么问题,因为我尝试过:json_encode甚至return $response()->json...但仍然无法正常工作。

你知道发生了什么吗?

4

1 回答 1

2

我认为您需要在必须获取响应的对象上运行该send()函数,然后getBody()在该对象上运行以获取响应对象,然后在该对象上运行getContents()以将响应的内容作为字符串获取。所以总的来说它看起来像

$first_report = $this->client->post('https://my.service.com/reporting/execute/', [
'auth' => ['myemail@email.com', 'mypassword'],
'form_params' => ['data' => json_encode($data)]
])->send()->getBody()->getContents();



$second_report = $this->client->get('mysecondservice.com/reports', [
'query' => [
    'account_auth_token' => '000011122223333444455556667778889999',
    'start_date' => $to,
    'end_date' => $from
]
])->send()->getBody()->getContents();

我发现 Guzzle 文档与我用来获取结果的实际方法不匹配。不确定它是否过时或者我做错了,但这种方法对我有用。

于 2015-12-03T22:32:53.493 回答