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

详解微信图片防盗链“此图片来自微信公众平台 未经允许不得引用”的解决方案

程序员文章站 2022-11-08 11:36:24
已经获取微信公众号发布的图片,但不能正常显示 ,提示:此图片来自微信公众平台 未经允许不得引用。   这是怎么回事呢? 遇到这种问题是因为微信...

已经获取微信公众号发布的图片,但不能正常显示 ,提示:此图片来自微信公众平台 未经允许不得引用。

详解微信图片防盗链“此图片来自微信公众平台 未经允许不得引用”的解决方案 

这是怎么回事呢?

遇到这种问题是因为微信公众平台对图片采用了防盗链设置,微信对外提供了api接口,让我们可以通过授权的方式获取到自己公众号里面的文章,或者你也可以通过爬虫去抓取微信的文章,但是微信的图片默认是不允许外部调用的

那该怎么解决这种问题呢?

这里我找到了两种方案

第一种

在js中提前把图片加载到本地,然后从本地缓存中读取图片

var showimg = function (url) {
 var frameid = 'frameimg' + math.random();
 window.img = '<img id="img" src=\'' + url + '?' + math.random() + '\' /><script>window.onload = function() { parent.document.getelementbyid(\'' + frameid + '\').height = document.getelementbyid(\'img\').height+\'px\'; }<' + '/script>';
 return '<iframe id="' + frameid + '" src="javascript:parent.img;" frameborder="0" scrolling="no" width="100%"></iframe>';
}

通过各种iframe,form等来跳过防盗链机制,但是这种方法,对代码的结构影响很大,对一些移动类库兼容性不太好。

第二种

运用用后台方法

<img class="form_logo" src="{:u('showmpimg')}?url={$vo.url}" style="max-width: none" width="160" height="100">
//显示图片
  public function showmpimg($url){
    header('content_type:image/jpeg');
    echo file_get_contents($url);
  }

第三种,用php模拟浏览器请求

$url = $request->input('url');
$ch = curl_init();
$httpheader = array(
 'host' => 'mmbiz.qpic.cn',
 'connection' => 'keep-alive',
 'pragma' => 'no-cache',
 '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'
);
$options = array(
 curlopt_httpheader => $httpheader,
 curlopt_url => $url,
 curlopt_timeout => 5,
 curlopt_followlocation => 1,
 curlopt_returntransfer => true
);
curl_setopt_array( $ch , $options );
$result = curl_exec( $ch );
curl_close($ch);
header('content-type: image/jpg');
echo $result;
exit;

可看到结果,

详解微信图片防盗链“此图片来自微信公众平台 未经允许不得引用”的解决方案

目前我用第二种方法测试过,代码简单易懂,建议使用。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。