php curl模拟登录新浪微博的例子

发布时间:2020-01-07编辑:脚本学堂
本文介绍了php curl模拟登录新浪微博,以获取数据的方法,php模拟登录的例子,新浪限制了不允许模拟登录,同样的登录参数,用网页登录一切正常,用curl登录,返回的cookies竟然是临时的。

php curl模拟登录新浪微博

需要取一些新浪微博的数据,但又不想使用api,只好使用模拟登录了。
发现以前可以使用的curl模拟登录代码失效了,google一下,发现有很多人碰到这个问题。

可能是因为新浪限制了不允许模拟登录,同样的登录参数,用网页登录一切正常,用curl登录,返回的cookies竟然是临时的.

所以看起来是登录成功了,并且获取到了用户信息,但是再次访问还是未登录状态。

解决方法:直接修改cookies的时效即可。

以下是测试通过的php代码。

2012-08-18 更新: 发现只要不设置curlopt_cookiesession参数就行了,不需要修改cookie_file.

完整代码:
 

复制代码 代码示例:

<?php
class sina
{
/*
    一个简单的新浪微搏curl模拟登录类. 来源: http://chenall.net/post/sina_curl_login/
    使用方法:

    http函数是一个简单的curl封装函数,需要自己去实现,
    http函数原型如下:
        http($url,$post_data = null)
        返回网页内容.
    第一个参数$url,就是要访问的url地址,$post_data是post数据,如果为空,则代表get访问.

    1.使用加密后密码登录 加密方法: sha1(sha1($pass))
        $sina = new sina($username,$sha1pass)
    2.直接使用原始密码登录 www.jb200.com
        $sina = new sina($username,$sha1pass,0)
    执行之后如果$sina->status非空,则登录成功,否则登录失败.
    登录成功之后,你就可以直接继续使用http函数来访问其它内容.
    使用 unset($sina) 会自动注销登录.
*/
    public $status;
    function __construct($su,$sp,$flags = 1) {
        $this->status = $this->login($su,$sp,$flags);
    }

    function __destruct()
    {
        //注销登录
        $this->logout();
    }

    function logout()
    {
        http("http://weibo.com/logout.php");
        unset($this->status);
    }
    /*不需要了,只要不设置http函数中不设置curlopt_cookiesession参数就行了,要设可以设为false.
    function resetcookie()//重置相关cookie
    {
        global $cookie_file;
        $str = file_get_contents($cookie_file);
        $t = time()+3600;//设置cookie有效时间一个小时
        $str = preg_replace("/t0t/", "t".$t."t", $str);
        $f = fopen($cookie_file,"w");
        fwrite($f,$str);
        fclose($f);
    }
    */

    function login($su,$sp,$flags = 0)
    {
        $su = urlencode(base64_encode($su));
        $data = http("http://login.sina.com.cn/sso/prelogin.php?entry=miniblog&client=ssologin.js&user=".$su);
        if (empty($data))
            return null;
        //$data = substr($data,35,-1);
        $data = json_decode($data);
        if ($data->retcode != 0)
            return null;
        if ($flags == 0)
            $sp = sha1(sha1($sp));
        $sp .= strval($data->servertime).$data->nonce;
        $sp = sha1($sp);
        $data = "url=http%3a%2f%2fweibo.com%2fajaxlogin.php%3f&returntype=meta&ssosimplelogin=1&su=".$su.'&service=miniblog&servertime='.$data->servertime."&nonce=".$data->nonce.'&pwencode=wsse&sp='.$sp;
        $data = http("http://login.sina.com.cn/sso/login.php?client=ssologin.js",$data);
        //$this->resetcookie();
        if (preg_match("/location.replace('(.*)')/",$data,$url))
        {
            $data = http($url[1]);
            //$this->resetcookie();
            $data = json_decode(substr($data,1,-2));
            if ($data->result == true)
                return $data->userinfo;
        }
        return null;
    }
}
?>

>>> 更多 php模拟登录 文章,专题链接:php模拟登录 php curl模拟登录教程大全