1. 程式人生 > >織夢文章微信分享帶縮圖與簡介

織夢文章微信分享帶縮圖與簡介

沒整之前

整了之後

測試效果可以試試我部落格文章

準備工作

  • 微信服務號一個,並且已經通過了實名認證;
  • 一個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/}",
				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/}"
			})
		})
	}
});
</script>

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

3) 域名換成自己的域名

3、wechat.php檔案下載,放在網站根目錄

https://pan.baidu.com/s/1FQejrLWYpY5rOwWLe0xg6A