我将 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_report和second_report为空。但是如果我只返回例如
return $first_report;
或者
return $second_report;
每个报告的数据都正确返回,但我不知道那里有什么问题,因为我尝试过:json_encode甚至return $response()->json...但仍然无法正常工作。
你知道发生了什么吗?