织梦DedeCMS文章微信分享带缩略图与简介

前端之家收集整理的这篇文章主要介绍了织梦DedeCMS文章微信分享带缩略图与简介前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。编程之家小编现在分享给大家,也给大家做个参考。

准备工作

微信服务号一个,并且已经通过了实名认证;

一个 ICP 备案的域名;

操作步骤

1、查看 AppId,AppSecret 以及绑定域名




2、文章内容页模板微信分享代码

<script src="https://res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>

<script type="text/javascript">

var url = encodeURIComponent(location.href.split("#")[0]);

$.ajax({

type: "get",

url: "https://www.dedehtml.com/wechat.PHP?link=" + url,

dataType: "json",

contentType: "application/json; charset=utf-8",

success: function(e) {

var d = e.appid,

i = e.timestamp,

t = e.noncestr,

n = e.signature;

wx.config({

debug: 0,

appId: d,

timestamp: i,

nonceStr: t,

signature: n,

jsApiList: ["onMenuShareTimeline","onMenuShareAppMessage"]

}),

wx.ready(function() {

wx.onMenuShareTimeline({

title: "{dede:field.title/}",

desc: "{dede:field.description/}",

link: "{dede:global.cfg_basehost/}{dede:field.id runPHP='yes'}$result=GetOneArchive(@me);@me=$result['arcurl'];{/dede:field.id}",

imgUrl: "{dede:global.cfg_basehost/}{dede:field.litpic/}"

}),

wx.onMenuShareAppMessage({

title: "{dede:field.title/}",

imgUrl: "{dede:global.cfg_basehost/}{dede:field.litpic/}"

})

})

}

});

</script>

1) 和 2) 网站不是 https 的要把它改成 http

3) 域名换成自己的域名

3、wechat.PHP 文件下载,放在网站根目录

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

猜你在找的Dedecms相关文章