免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2900 | 回复: 4
打印 上一主题 下一主题

关于php的curl 模拟登陆的问题? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-05-14 22:32 |只看该作者 |倒序浏览
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( );
?>

哪位高人指点一下!

论坛徽章:
0
2 [报告]
发表于 2009-05-15 08:48 |只看该作者
大家 帮忙看看! 这样方法怎么不能登陆那

论坛徽章:
0
3 [报告]
发表于 2009-05-15 09:20 |只看该作者
一直没闹清楚 curl干嘛的啊

论坛徽章:
0
4 [报告]
发表于 2009-05-15 09:54 |只看该作者

关于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( );
?>

哪位高人指点一下!

论坛徽章:
0
5 [报告]
发表于 2009-05-17 19:38 |只看该作者
还需要把Cookie写入才行的。
curl_setopt ( $ch, CURLOPT_COOKIEFILE, COOKIE_FILE);
curl_setopt ( $ch, CURLOPT_COOKIEJAR,COOKIE_FILE);
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP