我正在使用 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...
我希望我足够清楚,如果您需要更多信息,请随时询问。提前致谢。