- 论坛徽章:
- 0
|
关于curl 模拟登陆?求助
php的curl 模拟登陆 ?我想模拟登陆http://tongji.cn.yahoo.com/ 这个yahoo系统的!
现在yahoo的验证地址 是https的 https://edit.bjs.yahoo.com/config/login! 现在登陆的cookie能得到 但是就是不能登陆正常登陆!
代码如下:
<?PHP
define("COOKIE_FILE", tempnam('tmp','cookie') );
function checklogin( )
{
$ch = curl_init( );
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt( $ch, CURLOPT_URL, 'https://edit.bjs.yahoo.com/config/login');
curl_setopt( $ch, CURLOPT_POST, 1 );
curl_setopt( $ch, CURLOPT_HEADER, 1);
//curl_setopt($ch, CURLOPT_POSTFIELDS,"login=".urlencode($username)."&password=".urlencode($pwd)."&.intl=cn&.src=".urlencode('https://member.cn.yahoo.com/cnreg/reginfo.html')."&.done=".urlencode('http://tongji.cn.yahoo.com/mystat.html')."&.challenge");
curl_setopt($ch, CURLOPT_POSTFIELDS,'.intl=cn&.src=https%3A%2F %2Fmember.cn.yahoo.com%2Fcnreg%2Freginfo.html&.done=http%3A%2F %2Ftongji.cn.yahoo.com%2Fmystat.html&.challenge=&login=用户名& passwd=密码');
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt( $ch, CURLOPT_COOKIEJAR, COOKIE_FILE);
curl_setopt( $ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10');
ob_start();
curl_exec( $ch );
$contents = ob_get_contents();
ob_end_clean( );
curl_close( $ch );
return $contents;
}
echo $yahoo = checklogin( );
?>
哪位高人指点一下! |
|