PHP實現(xiàn)登陸并抓取微信列表中最新一組微信消息的方法
本文實例講述了PHP實現(xiàn)登陸并抓取微信列表中最新一組微信消息的方法。分享給大家供大家參考,具體如下:
<?php $_G['wx_g'] = array('init' => array( "wx_content" => array("weixin_user" => "微信號碼", "weixin_pass" => "微信密碼") ) ); wx_login(); $messge_list = get_message_list(); $file_id=$messge_list['item'][0]['multi_item'][0]['file_id']; //print_r($messge_list);exit; if(!DB::result_first("select count(weiyi_id) from test.yangang_jiaojing where weiyi_id={$file_id} ")){ DB::query("delete from test.yangang_jiaojing"); foreach ($messge_list['item'][0]['multi_item'] as $key => $val){ $val['title']=mb_convert_encoding($val['title'], 'GBK','UTF-8'); $val['weiyi_id']=mb_convert_encoding($val['file_id'], 'GBK','UTF-8'); $val['des']=mb_convert_encoding($val['digest'], 'GBK','UTF-8'); $val['picurl']=$val['cover']; $val['detail']=$val['content_url']; $query_cheng = "INSERT INTO test.yangang_jiaojing(weiyi_id,title,pic_url,detail_url,des)VALUES ({$val['weiyi_id']},'{$val['title']}','{$val['picurl']}','{$val['detail']}','{$val['des']}')"; $count1=DB::query($query_cheng); } } function get_message_list(){ global $_G; $cookie=$_G['wx_g']['cookie']; $url = "https://mp.weixin.qq.com/cgi-bin/appmsg?begin=0&count=2&t=media/appmsg_list&type=10&action=list&token=".$_G['wx_g']['token']."&lang=zh_CN"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_COOKIE, $cookie); curl_setopt($ch, CURLOPT_REFERER, "https://mp.weixin.qq.com/cgi-bin/appmsg?begin=0&count=2&t=media/appmsg_list&type=10&action=list&token=".$_G['wx_g']['token']."&lang=zh_CN"); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:18.0) Gecko/20100101 Firefox/18.0"); curl_setopt($ch, CURLOPT_FOLLOWLOCATION,true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_SSLVERSION, 3); $output2 = curl_exec($ch); curl_close($ch); //echo $output2;exit; $output1=explode('wx.cgiData = ',$output2); $output1=$output1[1]; $output1=explode(',"file_cnt":',$output1); $output1=$output1[0]; $output1.='}'; $message_list=json_decode($output1,true); //$message_list=mb_convert_encoding($message_list, "GBK","UTF-8"); //print_r($message_list);exit; return $message_list; } function wx_login(){ global $_G; //echo $_G['wx_g']['init']['wx_content']['weixin_user'];exit; $username = $_G['wx_g']['init']['wx_content']['weixin_user']; $pwd = md5($_G['wx_g']['init']['wx_content']['weixin_pass']); $url = "https://mp.weixin.qq.com/cgi-bin/login?lang=zh_CN"; $post_data = "username=".$username."&pwd=".$pwd."&imgcode=&f=json"; $cookie = "pgv_pvid=2067516646"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); curl_setopt($ch, CURLOPT_COOKIE, $cookie); curl_setopt($ch, CURLOPT_REFERER, "https://mp.weixin.qq.com/cgi-bin/loginpage?t=wxm2-login&lang=zh_CN"); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:18.0) Gecko/20100101 Firefox/18.0"); curl_setopt($ch, CURLOPT_FOLLOWLOCATION,true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_SSLVERSION, 3); $output = curl_exec($ch); curl_close($ch); //echo $output;exit; list($header, $body) = explode("\r\n\r\n", $output); preg_match_all("/set\-cookie:([^\r\n]*)/i", $header, $matches); if(!empty($matches[1][2])){ $cookie = $matches[1][0].$matches[1][1].$matches[1][2].$matches[1][3]; }else{ $cookie = $matches[1][0].$matches[1][1]; } $cookie = str_replace(array('Path=/',' ; Secure; HttpOnly','=;'),array('','','='), $cookie); $cookie = 'pgv_pvid=6648492946;'.$cookie; $data = json_decode($body,true); $result = explode('token=',$data['redirect_url']); $token = $result[1]; if(!$token) cpmsg($installlang['import_error_password'], "{$request_url}&step=import&pswerror=1", 'error'); //寫入到全局變量 $_G['wx_g']['cookie'] = $cookie; $_G['wx_g']['token'] = $token; } ?>
CREATE TABLE IF NOT EXISTS `yangang_jiaojing` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `des` varchar(300) NOT NULL, `detail_url` varchar(300) NOT NULL, `pic_url` varchar(300) NOT NULL, `note` varchar(50) NOT NULL, `weiyi_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP微信開發(fā)技巧匯總》、《PHP編碼與轉(zhuǎn)碼操作技巧匯總》、《PHP網(wǎng)絡編程技巧總結(jié)》、《PHP基本語法入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。
- PHP后臺實現(xiàn)微信小程序登錄
- PHP實現(xiàn)微信小程序人臉識別刷臉登錄功能
- php的laravel框架快速集成微信登錄的方法
- PHP版微信第三方實現(xiàn)一鍵登錄及獲取用戶信息的方法
- php版微信自動登錄并獲取昵稱的方法
- PHP Curl模擬登錄微信公眾平臺、新浪微博實例代碼
- php實現(xiàn)微信掃碼自動登陸與注冊功能
- PHP實現(xiàn)微信模擬登陸并給用戶發(fā)送消息的方法【文字,圖片,圖文】
- php實現(xiàn)微信模擬登陸、獲取用戶列表及群發(fā)消息功能示例
- PHP微信PC二維碼登陸的實現(xiàn)思路
- PHP實現(xiàn)網(wǎng)站應用微信登錄功能詳解
相關(guān)文章
thinkphp項目部署到Linux服務器上報錯“模板不存在”如何解決
一個項目部署到Linux服務器上去的時候,發(fā)現(xiàn)某些模板竟然會報錯說“模板不存在:/Application/Admin/....”,這篇文章就是介紹了thinkphp項目部署到Linux服務器上報錯“模板不存在”的解決方法,感興趣的小伙伴們可以參考一下2016-04-04PHP進制轉(zhuǎn)換實例分析(2,8,16,36,64進制至10進制相互轉(zhuǎn)換)
這篇文章主要介紹了PHP進制轉(zhuǎn)換,結(jié)合具體實例形式分析了2,8,16,36,64進制至10進制相互轉(zhuǎn)換實現(xiàn)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2017-02-02php preg_match_all結(jié)合str_replace替換內(nèi)容中所有img
最近做站的時候,采集了大量的數(shù)據(jù),但采回來的數(shù)據(jù)基本上都要經(jīng)過過濾原站保留的數(shù)據(jù),其中IMG就是一個地方。網(wǎng)站上好多這些應用例子似乎沒有必要“秀”出來,但站已幾天沒寫日志,那就來一個吧2008-10-10