在php后加上 ?url= 公众号文章链接 。比如本站的接口地址
输出仍然是JSON格式,这是当前最流行!没有办法!(毕竟web网站,小程序,APP都能接收JSON格式的数据)
- https://www.meiweny.cn/ecmsapi/index.php?mod=jiexi&act=weixincaiji&url=https://mp.weixin.qq.com/s/BSD0Bj5ySzTxe97VMACDig
返回参数:简介以本站的API接口为例!输出如下:
一、获取微信公众号文章链接(地球人都知道的)
- status:状态码
- url:微信公众号文章连接地址
- newstext:微信公众号文章内容
- title:微信公众号文章标题
- titlepiccl:微信公众号文章封面图片
- smalltext:微信公众号文章简介
- nickname:微信公众号名字
- head_img:微信公众号头像
在抓取微信公众号文章之前,我们需要先获取到该公众号文章的链接。可以通过以下几种方式来获取:
1.在微信公众平台后台复制链接:登录微信公众平台后台,找到要抓取的文章,点击右上角的“复制链接”按钮即可复制该篇文章的链接。
2.使用第三方工具获取链接:目前市面上有很多第三方工具可以帮助我们获取微信公众号文章链接,例如“搜狗微信搜索”,输入关键词搜索后即可获得相关文章列表及其链接。
二、使用php抓取微信公众号文章并用正则式获取微信公众号文章的相关信息。这里就不啰嗦了,直接上代码: 此代码只是适配了有用第三方编辑器的“同步阅读”,“香落尘外”,“神州文艺”等微信公众号!其他有用第三方编辑器的微信公众号请在正则里面继续添加规则!此代码良好适配默认的微信公众号发布平台!
以上就是用代码抓取获取微信公众号文章的相关信息!此举是为了指定目标采集或者搬迁到第三方有可用接口的平台!鉴于小编只是测试并没有深究这个正则式!某些微信公众号利用其他三方发布到微信公账号的文章或许采集或带来不愉快的体验!请在相关注释的地方进行正则匹配!还是那句老话自己动身丰衣足食!本教程都是免费的,只是给不会的小伙伴提供一个范例!如果有好的写法也可以跟我们联系哦!
- <?php
- header('Access-Control-Allow-Origin: *');
- header('Content-Type: text/html; charset=UTF-8');
- defined('ECMSAPI_MOD') or exit;
- $url = @$_GET['url']?$_GET['url']:"https://mp.weixin.qq.com/s/n-X7v_JBFTSM6kBYyIG5kg";
- $headers = array(
- 'Host' => 'mmbiz.qpic.cn',
- 'Connection' => 'keep-alive',
- 'Pragma' => 'no-cache',
- 'Refererr'=>'http://www.qq.com/',
- 'Cache-Control' => 'no-cache',
- 'Accept' => 'textml,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8',
- 'User-Agent' => 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36',
- 'Accept-Encoding' => 'gzip, deflate, sdch',
- 'Accept-Language' => 'zh-CN,zh;q=0.8,en;q=0.6,zh-TW;q=0.4'
- );
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL,$url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
- curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
- $result= curl_exec($ch);
- curl_close($ch);
- preg_match_all('/meta name="author" content="(.*?)"/', $result, $m);
- $nickname = $m[1][0];//公众号昵称
- preg_match_all('/property="og:title" content="(.*?)"/', $result, $m);
- $title = $m[1][0];//公众号文章标题
- preg_match_all('/property="og:image" content="(.*?)"/', $result, $m);
- $titlepic = $m[1][0];//公众号文章标题图片
- preg_match_all('/name="description" content="(.*?)"/', $result, $m);
- $smalltext = $m[1][0];//公众号文章简介
- preg_match_all('/var round_head_img = "(.*?)";/si',$result,$m);
- $head_img = $m[1][0];//公众号头像
- if (!extension_loaded('dom')) {
- die('DOMDocument扩展未加载,请检查PHP配置文件。');
- }
- $dom = new DOMDocument();
- try {
- $dom->loadHTML($result);
- } catch (Exception $e) {
- die('加载HTML时出错:' . $e->getMessage());
- }
- foreach ($dom->getElementsByTagName('*') as $tag) {
- if ($tag->hasAttribute('style')) {
- $tag->removeAttribute('style');
- }
- }
- $newstext = '';
- $divtext = $dom->getElementById('js_content');
- // 遍历所有的子节点
- foreach ($divtext->childNodes as $child) {
- $newstext .=$child->ownerDocument->saveHTML($child);
- }
- // 删除所有非p、br和img标签
- $newstext=strip_tags($newstext, "<img><br><p>");
- $newnewstext = preg_replace_callback('/<img[^>]+>/', function ($matches) {
- global $empire,$public_r,$dbtbpre, $title, $smalltext;
- $img = $matches[0];
- $attrs = [];
- preg_match('/data-src="([^"]+)"/', $img, $matches);
- if (isset($matches[1])) {
- $imgData = file_get_contents($matches[1]);
- if ($imgData !== false) {
- //$attrs['src'] = 'data:image/png;base64,' . base64_encode($imgData);
- $attrs['src'] = $matches[1];
- } else {
- $attrs['src'] = $matches[1];
- }
- }
- return '<img src=" '.implode(' ', $attrs).' " title="'.$title.'">';
- },$newstext);
- $replacement = '<$1$2';
- $newHtml = preg_replace('/<(/)?(p|span|br)[^>]*style="[^"]*"/i', $replacement, $newnewstext);
- $newHtml = preg_replace('/<p[^>]*styles*=s*"s*[^"]*"s*>(.*?)</p>/i', '$2', $newHtml);
- $newHtml= str_replace(array("<p><br></p>", "<p><br></p>"), '', $newHtml);
- $wechattext =preg_replace('/</strong>|■|<strong>|.*免费订阅|.*文学新高地|.*点击上方/i', '', $newHtml); //去头部
- $wechattext = preg_replace('~作者简介.*?>|延伸阅读.*|重要公告.*|责任编辑.*|落尘外平台团队.*|作者:.*|</p>香落尘外.*|往期作品回顾.*~', '',$wechattext); //去尾部
- $content = [
- 'status' => 200,
- 'msg' => "采集成功",
- 'newstext' => $wechattext,
- 'nickname' => $nickname,
- 'title' => $title,
- 'url' => $url,
- 'titlepic' => $titlepic,
- 'smalltext' => $smalltext,
- 'head_img' => $head_img,
- 'time' => date("Y-m-d H:i:s"),
- 'api_source' => "".$public_r['sitename']."官网地址:".$public_r['add_pcurl'].""
- ];
- $Json=json_encode($content,JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE);
- echo stripslashes($Json);