php 126邮箱 联系人,php curl 获取 邮箱通讯录 126

/**

* author : 郭钱

* */

error_reporting(0);

define("COOKIEJAR", tempnam("./assets/tmp", "c1_"));

define('TIMEOUT', 60);

$e126=new mail_126();

$lists = $e126->getAddressList('email@126.com', 'password');

var_dump($lists);

class mail_126 {

public function login($username, $password) {

//第一步:初步登陆

$cookies = array();

$ch = curl_init();

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_URL, "https://reg.163.com/logins.jsp?type=1&product=mail126&url=http://entry.mail.126.com/cgi/ntesdoor?hid%3D10010102%26lightweight%3D1%26verifycookie%3D1%26language%3D0%26style%3D-1");

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS, "username=" . $username . "&password=" . $password);

curl_setopt($ch, CURLOPT_COOKIEJAR, COOKIEJAR);

curl_setopt($ch, CURLOPT_HEADER, 1);

curl_setopt($ch, CURLOPT_TIMEOUT, TIMEOUT);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$str = curl_exec($ch);

file_put_contents('./temp/126result.txt', $str); //需要创建文件

curl_close($ch);

//获取redirect_url跳转地址,可以从126result.txt中查看,通过正则在$str返回流中匹配该地址

preg_match("/replace\(\"(.*?)\"\)\;/", $str, $mtitle);

$_url1 = $mtitle[1];

//file_put_contents('./126resulturl.txt', $redirect_url);

//第二步:再次跳转到到上面$_url1

$ch = curl_init($_url1);

curl_setopt($ch, CURLOPT_TIMEOUT, TIMEOUT);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_setopt($ch, CURLOPT_COOKIEFILE, COOKIEJAR);

curl_setopt($ch, CURLOPT_COOKIEJAR, COOKIEJAR);

curl_setopt($ch, CURLOPT_HEADER, 1);

$str2 = curl_exec($ch);

curl_close($ch);

if (strpos($str2, "安全退出") !== false) {

return 0;

}

return 1;

}

/**

* 获取邮箱通讯录-地址

* @param $user

* @param $password

* @param $result

* @return array

*/

public function getAddressList($username, $password) {

if (!$this->login($username, $password)) {

return 0;

}

$header = $this->_getheader($username);

if (!$header['sid']) {

return 0;

}

//测试找出sid(很重要)和host

file_put_contents('./temp/host.txt', $header['host']);

file_put_contents('./temp/sid.txt', $header['sid']);

//开始进入模拟抓取

$ch = curl_init();

//curl_setopt($ch, CURLOPT_URL, "http://" . $header['host'] . "/a/s?sid=" . $header['sid'] . "&func=global:sequential");

//参考联系人下载地址

curl_setopt($ch, CURLOPT_URL, "http://" . $header['host'] . "/js4/s?sid=" . $header['sid'] . "&func=global:sequential");

curl_setopt($ch, CURLOPT_COOKIEFILE, COOKIEJAR);

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/xml"));

$str = "<?xml version=\"1.0\"?>pab:searchContactsFNtrueuser:getSignaturespab:getAllGroups";

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS, $str);

curl_setopt($ch, CURLOPT_TIMEOUT, TIMEOUT);

ob_start();

$data = curl_exec($ch);

$contents = ob_get_contents();

ob_end_clean();

curl_close($ch);

//get mail list from the page information username && emailaddress

preg_match_all("/(.*)/Umsi", $contents, $mails);

preg_match_all("/(.*)/Umsi", $contents, $names);

$users = array();

foreach ($names[1] as $k => $user) {

//$user = iconv($user,'utf-8','gb2312');

$users['username'] = $user;

$users['email'] = $mails[1][$k];

$lists[] = $users;

}

if (!$lists) {

return '您的邮箱中尚未有联系人';

}

return $lists;

}

/**

* Get Header info

*/

private function _getheader($username) {

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "http://entry.mail.126.com/cgi/ntesdoor?hid=10010102&lightweight=1&verifycookie=1&language=0&style=-1&username=" . $username . "@126.com");

curl_setopt($ch, CURLOPT_COOKIEFILE, COOKIEJAR); //当前使用的cookie

curl_setopt($ch, CURLOPT_COOKIEJAR, COOKIEJAR); //服务器返回的新cookie

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_setopt($ch, CURLOPT_HEADER, true);

curl_setopt($ch, CURLOPT_NOBODY, true);

$content = curl_exec($ch);

preg_match_all('/Location:\s*(.*?)\r\n/i', $content, $regs);

$refer = $regs[1][0];

preg_match_all('/http\:\/\/(.*?)\//i', $refer, $regs);

$host = $regs[1][0];

preg_match_all("/sid=(.*)/i", $refer, $regs);

$sid = $regs[1][0];

curl_close($ch);

return array('sid' => $sid, 'refer' => $refer, 'host' => $host);

}

}

?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值