我正在使用Guzzle 6,我无法在客户端的主体中使用form_params传递数组
$postFields = [
form_params => [
'data[test]' => "TEST",
'data[whatever]' => "Whatever..."
]
];
$client = new GuzzleClient([
'cookies' => $jar, // The cookie
'allow_redirects' => true, // Max 5 Redirects
'base_uri' => $this->navigateUrl, // Base Uri
'headers' => $this->headers
]);
$response = $client->post('api',[$postFields]);
最后,当我发送请求时,我的数据已经消失......但是如果我在响应中手动添加数据,它的工作正常。
$response = $client->post(
'api',
[form_params => [
'data[test]'=>"TEST",
'data[wht]' => 'Whatever'
],
]
// It's working this way...
如果您需要更多信息,我希望我足够清楚。提前谢谢。
答案 0 :(得分:4)
我看到了几个问题。首先是你的$postFields
数组似乎没有正确格式化,其次你将$ postFields数组包装在另一个数组中。
$options = [
'debug' => true,
'form_params' => [
'test' => 15,
'id' => 43252435243654352,
'name' => 'this is a random name',
],
'on_stats' => $someCallableItem,
];
$response = $client->post('api', $options);