程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php模擬用戶自動在qq空間發表文章的方法

php模擬用戶自動在qq空間發表文章的方法

編輯:關於PHP編程

php模擬用戶自動在qq空間發表文章的方法


我們這裡是一個簡單的利用php來模擬登錄後再到QQ空間發送文章的一個簡單的程序,有需要的朋友可以參考

php模擬用戶自動在qq空間發表文章的方法

  1. <?php  
  2.   
  3. //模擬get post請求函數 http://www.lai18.com 
  4.   
  5. /*  
  6.   
  7. 函數說明:  
  8.   
  9. 功能:請求方式可以get,post,可以發送的cookie,保存的cookiefile文件  
  10.   
  11. 參數:$url-----請求url    $referer---來源url    $postdata----------用於post請求的數據,''為get請求  
  12.   
  13. $cookie---------發送的cookie     $cookiefile-----保存的cookiefile文件  
  14.   
  15. 返回值:返回獲取的源碼  
  16.   
  17. */ 
  18.   
  19. function request($url,$referer='',$postdata='',$cookie='',$cookiefile=''){  
  20.   
  21. //header設置  
  22.   
  23. $header='';  
  24.   
  25. $header.="Content-Type: application/x-www-form-urlencodedrn";//內容請求類型  
  26.   
  27. $header.="User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)rn";//浏覽器字段  
  28.   
  29. $header.="Referer:".$referer."rn";//設置來源地址  
  30.   
  31. $header .= "Cookie:".$cookie ; //設置cookie,默認空  
  32.   
  33. //請求方法get post,通過$postdata空---get,非空----post  
  34.   
  35. if($postdata=='')$method='GET';  
  36.   
  37. else $method='POST';  
  38.   
  39. //定義用於創建流的數組  
  40.   
  41. $opts=array();  
  42.   
  43. $opts['http']=array('method'=>$method,'header'=>$header,'content'=>$postdata);  
  44.   
  45. //生成流  
  46.   
  47. $context=stream_context_create($opts);  
  48.   
  49. //發送請求,獲取源碼  
  50.   
  51. $yuanma=file_get_contents($url,false,$context);  
  52.   
  53. //是否需要保存cookie到文件,$cookiefile不空時  
  54.   
  55. if($cookiefile!=''){  
  56.   
  57. echo '需要保存cookie<br>';  
  58.   
  59. //判斷保存文件存在,不存在創建  
  60.   
  61. if(!file_exists($cookiefile)){  
  62.   
  63. file_put_contents($cookiefile,'');  
  64.   
  65. }  
  66.   
  67. //獲取cookie,保存起來  
  68.   
  69. $response=implode("rn",$http_response_header);  
  70.   
  71. //用正則匹配cookie  
  72.   
  73. $zengze="/Set-Cookie:(.*?)rn/";  
  74.   
  75. preg_match_all($zengze,$response,$cookie_arr);  
  76.   
  77. //存在匹配,保存  
  78.   
  79. if(!emptyempty($cookie_arr[1])){  
  80.   
  81. $cookiestr=implode(';',$cookie_arr[1]);  
  82.   
  83. file_put_contents($cookiefile,$cookiestr);  
  84.   
  85. echo '成功保存cookie<br>';  
  86.   
  87. }  
  88.   
  89. else echo '沒有匹配到cookie<br>';  
  90.   
  91. }//end if($cookiefile!='')  
  92.   
  93. //返回源碼  
  94.   
  95. return $yuanma;  
  96.   
  97. }//end function request($url,$referer,$postdata,$cookie,$cookiefile)   
  98.   
  99. //獲得當前的腳本網址   
  100.   
  101. function GetCurUrl()   
  102.   
  103. {   
  104.   
  105. if(!emptyempty($_SERVER["REQUEST_URI"]))   
  106.   
  107. {   
  108.   
  109. $scriptName = $_SERVER["REQUEST_URI"];   
  110.   
  111. $nowurl = $scriptName;   
  112.   
  113. }   
  114.   
  115. else  
  116.   
  117. {   
  118.   
  119. $scriptName = $_SERVER["PHP_SELF"];   
  120.   
  121. if(emptyempty($_SERVER["QUERY_STRING"]))   
  122.   
  123. {   
  124.   
  125. $nowurl = $scriptName;   
  126.   
  127. }   
  128.   
  129. else  
  130.   
  131. {   
  132.   
  133. $nowurl = $scriptName."?".$_SERVER["QUERY_STRING"];   
  134.   
  135. }   
  136.   
  137. }   
  138.   
  139. return $nowurl;   
  140.   
  141. }  
  142.   
  143.    
  144.   
  145. //獲得當前文件名  
  146.   
  147. $nowurl=GetCurUrl();  
  148.   
  149. //echo $nowurl;  
  150.   
  151.    
  152.   
  153. //表單輸出,沒有提交時  
  154.   
  155. if(!isset($_POST['qq'])){  
  156.   
  157. echo '<form method="post" action="'.$nowurl.'">  
  158.   
  159. qq號碼:<input type="text" name="qq"><br>  
  160.   
  161. g_tk:<input type="text" name="g_tk"><br>  
  162.   
  163. 標題:<input type="text" name="title"><br>  
  164.   
  165. 內容:<input type="text" name="content"><br>  
  166.   
  167. <input type="submit" value="發表文章">  
  168.   
  169. </form>';  
  170.   
  171. die();  
  172.   
  173. }  
  174.   
  175.    
  176.   
  177. /*  
  178.   
  179. 提交參數說明:  
  180.   
  181. $_POST['qq']---用戶QQ  
  182.   
  183. $_POST['g_tk']--這個參數很關鍵,獲得這個參數,需要抓下發表時提交的post地址後面調用的g_tk=123456789,  
  184.   
  185. 路POST <a href="http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk=123456789裡的g_tk=123456789" target="_blank">http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk=123456789裡的g_tk=123456789</a>  
  186.   
  187. $_POST['title']---文章標題,不得空  
  188.   
  189. $_POST['content']---文章內容,不得空  
  190.   
  191. */ 
  192.   
  193.    
  194.   
  195. header('Content-Type:text/html;charset=gb2312');  
  196.   
  197. set_time_limit(0);  
  198.   
  199. //ob_end_clean();  
  200.   
  201. //ob_start();  
  202.   
  203.    
  204.   
  205. //獲取cookie文件,不存在創建,並退出程序  
  206.   
  207. $cookiefile=dirname(__FILE__).'\qq_cookie.txt';  
  208.   
  209. if(!file_exists($cookiefile)){  
  210.   
  211. echo 'qq_cookie.txt不存在,自動創建,請填寫抓包的cookie<br>';  
  212.   
  213. file_put_contents($cookiefile,'');  
  214.   
  215. die('程序退出');  
  216.   
  217. }  
  218.   
  219. //存在,讀取cookie  
  220.   
  221. else{  
  222.   
  223. $cookie=file_get_contents($cookiefile);//登錄cookie  
  224.   
  225. //$cookie=urlencode($cookie);  
  226.   
  227. }  
  228.   
  229. //echo 'cookie:'.$cookie.'<br>';  
  230.   
  231.    
  232.   
  233. //構成發表頁,post數據等的重要信息  
  234.   
  235. //qq號碼  
  236.   
  237. if(emptyempty($_POST['qq'])||preg_match('/[^0-9]/is',$_POST['qq']))die('qq號碼有誤,必須數字');  
  238.   
  239. else $qq=$_POST['qq'];//qq號  
  240.   
  241. if(emptyempty($_POST['g_tk'])||preg_match('/[^0-9]/is',$_POST['g_tk']))die('post重要參數g_tk不合法,必須數字,請使用抓包的值');  
  242.   
  243. $g_tk=$_POST['g_tk'];  
  244.   
  245.    
  246.   
  247. $title=emptyempty($_POST['title'])?die('標題不得空'):$_POST['title'];//文章標題  
  248.   
  249. $content=emptyempty($_POST['content'])?die('內容不得空'):$_POST['content'];//內容  
  250.   
  251.    
  252.   
  253. $category='個人日記';//分類  
  254.   
  255. $fabiao='http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk='.$g_tk;//發表處理頁  
  256.   
  257. $referer='http://ctc.qzs.qq.com/qzone/v5/toolpages/fp_gbk.html';//來源頁  
  258.   
  259. $r1='http://user.qzone.qq.com/'.$qq.'/infocenter';//列表訪問來源頁  
  260.   
  261. $postdata='uin='.$qq.'&category='.urlencode($category).'&title='.urlencode($title).'&content='.urlencode($content).'&html='.urlencode('<div class="blog_details_20110920">'.$content.'</div>').'&tweetflag=0&cb_autograph=1&topflag=0&needfeed=0&g_tk='.$g_tk.'&_fp_refer=http%3A%2F%2Fctc.qzs.qq.com%2Fqzone%2Fnewblog%2Fv5%2Feditor.html%3Fsource%3D1%7Chttp%3A%2F%2Fctc.qzs.qq.com%2Fqzone%2Fnewblog%2Fv5%2Feditor.html%3Fsource%3D1%3Chttp%3A%2F%2Fuser.qzone.qq.com%2F'.$qq.'%2Fmain';//post數據  
  262.   
  263. //$postdata=urlencode($postdata);  
  264.   
  265. //echo $postdata;  
  266.   
  267. //發送請求,獲取源碼  
  268.   
  269. $yuanma=request($fabiao,$r1,$postdata,$cookie,'');  
  270.   
  271. if(strpos($yuanma,'發表成功'))echo $title.'  發表成功<br>';  
  272.   
  273. else echo '發表失敗:右鍵查看源碼,可以看到具體錯誤'.$yuanma;  
  274.   
  275. ?> 

 



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved