当前卷曲格式
curl -v --cookie "JSESSIONID=xxxxxxxxx" -X POST --data "[\"test\",\"password\"]" http://domain.com/register
如何验证Cookie&使用Guzzle发布数据?
$url = 'http://domain.com/register';
$client = new GuzzleHttp\Client();
$jar = new \GuzzleHttp\Cookie\CookieJar();
$register = $client->post($url, ['cookies' => $jar, 'http_errors' => false]);
答案 0 :(得分:0)
使用form_params请求选项发布数据。 使用debug请求选项将您从Guzzle的请求与curl请求进行比较。
SO中有很多例子,Guzzle文档很好地解释了事情。