欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php curl模拟答题,总是400错误

程序员文章站 2022-04-22 23:46:33
...
php curl php curl 我想模拟这个网站的答题:http://zsjs.kaiwind.com/kf/html/index.html
他是在上面的页面登陆,之后到新的页面去答题,答题全部结束且真确之后,允许提交。
他是ajax提交,全部js验证通过后,回想后台发送ajax请求,完成页面。

他发送的数据倒是不复杂,但是在模拟他数据发送的时候,却总是出错,下面贴出代码和错误提示,望各位大神给予解救。
代码:
curl请求部分:

执行部分:
urlencode($phone),			'area'=>urlencode($area)	);		$GLOBALS['cookie_file'] = $cookie_jar;	require_once('./functions.php');	$url = 'http://zsjs.kaiwind.com/kf/html/index.html';	// vget($url);	//exit();	$browsers = array (        "Accept" => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",        "Accept-Encoding" => "gzip, deflate",		"Accept-Language"=>"zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",		"Cache-Control"=>"max-age=0",		"Connection"=>"keep-alive",		"Content-type"=>"application/x-www-form-urlencoded",		//"Cookie"=>"CNZZDATA199524=cnzz_eid%3D713570903-1381646309-http%253A%252F%252Fzsjs.kaiwind.com%26ntime%3D1381738758%26cnzz_a%3D0%26retime%3D1381738758499%26sin%3D%26ltime%3D1381738758499%26rtime%3D1",		"Host"=>"zsjs.kaiwind.com",		"User-Agent"=>"Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0"        );		$url = 'http://zsjs.kaiwind.com/kf/kfcheck.php';	dump(vpost($url,$data));	exit();	$url = 'http://zsjs.kaiwind.com/kf/kfsub.php';	dump(vpost($url,$data));?>


页面返回的结果:

string(90) "

400 Bad request


Your browser sent an invalid request.

"

回复讨论(解决方案)

cookie放在最后一行、?

curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); // 模拟用户使用的浏览器

把这句注释掉试试