欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php模拟用户自动在qq空间发表文章的步骤

程序员文章站 2022-06-12 08:54:17
...
php模拟用户自动在qq空间发表文章的方法

我们这里是一个简单的利用php来模拟登录后再到QQ空间发送文章的一个简单的程序,有需要的朋友可以参考,或改进可以给我意见,代码如下:

[php] view plaincopy

  1. //模拟get post请求函数 http://www.lai18.com
  2. /*
  3. 函数说明:
  4. 功能:请求方式可以get,post,可以发送的cookie,保存的cookiefile文件
  5. 参数:$url-----请求url $referer---来源url $postdata----------用于post请求的数据,''为get请求
  6. $cookie---------发送的cookie $cookiefile-----保存的cookiefile文件
  7. 返回值:返回获取的源码
  8. */
  9. function request($url,$referer='',$postdata='',$cookie='',$cookiefile=''){
  10. //header设置
  11. $header='';
  12. $header.="Content-Type: application/x-www-form-urlencodedrn";//内容请求类型
  13. $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";//浏览器字段
  14. $header.="Referer:".$referer."rn";//设置来源地址
  15. $header .= "Cookie:".$cookie ; //设置cookie,默认空
  16. //请求方法get post,通过$postdata空---get,非空----post
  17. if($postdata=='')$method='GET';
  18. else $method='POST';
  19. //定义用于创建流的数组
  20. $opts=array();
  21. $opts['http']=array('method'=>$method,'header'=>$header,'content'=>$postdata);
  22. //生成流
  23. $context=stream_context_create($opts);
  24. //发送请求,获取源码
  25. $yuanma=file_get_contents($url,false,$context);
  26. //是否需要保存cookie到文件,$cookiefile不空时
  27. if($cookiefile!=''){
  28. echo '需要保存cookie
    ';
  29. //判断保存文件存在,不存在创建
  30. if(!file_exists($cookiefile)){
  31. file_put_contents($cookiefile,'');
  32. }
  33. //获取cookie,保存起来
  34. $response=implode("rn",$http_response_header);
  35. //用正则匹配cookie
  36. $zengze="/Set-Cookie:(.*?)rn/";
  37. preg_match_all($zengze,$response,$cookie_arr);
  38. //存在匹配,保存
  39. if(!emptyempty($cookie_arr[1])){
  40. $cookiestr=implode(';',$cookie_arr[1]);
  41. file_put_contents($cookiefile,$cookiestr);
  42. echo '成功保存cookie
    ';
  43. }
  44. else echo '没有匹配到cookie
    ';
  45. }//end if($cookiefile!='')
  46. //返回源码
  47. return $yuanma;
  48. }//end function request($url,$referer,$postdata,$cookie,$cookiefile)
  49. //获得当前的脚本网址
  50. function GetCurUrl()
  51. {
  52. if(!emptyempty($_SERVER["REQUEST_URI"]))
  53. {
  54. $scriptName = $_SERVER["REQUEST_URI"];
  55. $nowurl = $scriptName;
  56. }
  57. else
  58. {
  59. $scriptName = $_SERVER["PHP_SELF"];
  60. if(emptyempty($_SERVER["QUERY_STRING"]))
  61. {
  62. $nowurl = $scriptName;
  63. }
  64. else
  65. {
  66. $nowurl = $scriptName."?".$_SERVER["QUERY_STRING"];
  67. }
  68. }
  69. return $nowurl;
  70. }
  71. //获得当前文件名
  72. $nowurl=GetCurUrl();
  73. //echo $nowurl;
  74. //表单输出,没有提交时
  75. if(!isset($_POST['qq'])){
  76. echo '
    $nowurl.'">
  77. qq号码:"text" name="qq">
  78. g_tk:"text" name="g_tk">
  79. 标题:"text" name="title">
  80. 内容:"text" name="content">
  81. "submit" value="发表文章">
  82. ';
  83. die();
  84. }
  85. /*
  86. 提交参数说明:
  87. $_POST['qq']---用户QQ
  88. $_POST['g_tk']--这个参数很关键,获得这个参数,需要抓下发表时提交的post地址后面调用的g_tk=123456789,
  89. 路POST http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk=123456789里的g_tk=123456789
  90. $_POST['title']---文章标题,不得空
  91. $_POST['content']---文章内容,不得空
  92. */
  93. header('Content-Type:text/html;charset=gb2312');
  94. set_time_limit(0);
  95. //ob_end_clean();
  96. //ob_start();
  97. //获取cookie文件,不存在创建,并退出程序
  98. $cookiefile=dirname(__FILE__).'\qq_cookie.txt';
  99. if(!file_exists($cookiefile)){
  100. echo 'qq_cookie.txt不存在,自动创建,请填写抓包的cookie
    ';
  101. file_put_contents($cookiefile,'');
  102. die('程序退出');
  103. }
  104. //存在,读取cookie
  105. else{
  106. $cookie=file_get_contents($cookiefile);//登录cookie
  107. //$cookie=urlencode($cookie);
  108. }
  109. //echo 'cookie:'.$cookie.'
    ';
  110. //构成发表页,post数据等的重要信息
  111. //qq号码
  112. if(emptyempty($_POST['qq'])||preg_match('/[^0-9]/is',$_POST['qq']))die('qq号码有误,必须数字');
  113. else $qq=$_POST['qq'];//qq号
  114. if(emptyempty($_POST['g_tk'])||preg_match('/[^0-9]/is',$_POST['g_tk']))die('post重要参数g_tk不合法,必须数字,请使用抓包的值');
  115. $g_tk=$_POST['g_tk'];
  116. $title=emptyempty($_POST['title'])?die('标题不得空'):$_POST['title'];//文章标题
  117. $content=emptyempty($_POST['content'])?die('内容不得空'):$_POST['content'];//内容
  118. $category='个人日记';//分类
  119. $fabiao='http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk='.$g_tk;//发表处理页
  120. $referer='http://ctc.qzs.qq.com/qzone/v5/toolpages/fp_gbk.html';//来源页
  121. $r1='http://user.qzone.qq.com/'.$qq.'/infocenter';//列表访问来源页
  122. $postdata='uin='.$qq.'&category='.urlencode($category).'&title='.urlencode($title).'&content='.urlencode($content).'&html='.urlencode('
    '.$content.'
    ').'&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数据
  123. //$postdata=urlencode($postdata);
  124. //echo $postdata;
  125. //发送请求,获取源码
  126. $yuanma=request($fabiao,$r1,$postdata,$cookie,'');
  127. if(strpos($yuanma,'发表成功'))echo $title.' 发表成功
    ';
  128. else echo '发表失败:右键查看源码,可以看到具体错误'.$yuanma;
  129. ?>

代码仅供参考,成功率有待大家的验证

php模拟用户自动在qq空间发表文章的步骤

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • php模拟用户自动在qq空间发表文章的步骤
  • 专题推荐

    作者信息
    php模拟用户自动在qq空间发表文章的步骤

    认证0级讲师

    推荐视频教程
  • php模拟用户自动在qq空间发表文章的步骤javascript初级视频教程
  • php模拟用户自动在qq空间发表文章的步骤jquery 基础视频教程
  • 视频教程分类