解决微信二次分享不显示摘要和图片的问题
程序员文章站
2022-09-08 20:34:14
解决不显示摘要和图片的问题,需要调用微信公众号的js-sdk的api ,需要前端和后台的配合,
后台需要返回 appid (公众号的appid ) 、 timestamp...
解决不显示摘要和图片的问题,需要调用微信公众号的js-sdk的api ,需要前端和后台的配合,
后台需要返回 appid (公众号的appid ) 、 timestamp (生成签名的时间戳) 、noncestr (签名的随机字符串) 、 signature (签名* 可能出错);
1.绑定域名
先登录微信公众平台进入“公众号设置”的“功能设置”里填写“js接口安全域名”。(特别提示不需要加上http或者https,吃过亏)
2.首先引入js 文件 http://res.wx.qq.com/open/js/jweixin-1.2.0.js
3.然后在配置wx.config 。
<script> $(function(){ wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appid: '', // 必填,公众号的唯一标识 timestamp: , // 必填,生成签名的时间戳 noncestr: '', // 必填,生成签名的随机串 signature: '',// 必填,签名,见附录1 jsapilist: [] // 必填,需要使用的js接口列表,所有js接口列表见附录2 }); }) </script>
4.通过ready接口处理成功验证
wx.ready(function(){ //详细代码 });
5.通过error接口处理失败验证
wx.error(function(res){});
详细页面代码
<script src="http://www.ciotimes.com/statics/js/jquery.min.js"></script> <script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script> //js引入错误导致wx没有定义。 <script> $(function(){ //获取本页面连接,生成签名需要 var url = location.href.split('#')[0]; $.ajax({ url: "http://xxx/index.php?m=content&c=wechat_share&a=index&pc_hash=wo1stv", type: "post", async:true, data:{'url':url}, cache: false, datatype: "json", success: function(data){ wx.config({ /* debug: true,*/ //调试模式 appid: data.appid, timestamp:data.timestamp, noncestr:data.noncestr, signature:data.signature, jsapilist: [ 'checkjsapi', 'onmenusharetimeline', 'hideoptionmenu', 'onmenushareappmessage' ] }); wx.ready(function(){ wx.checkjsapi({ jsapilist: [ 'getlocation', 'onmenusharetimeline', 'onmenushareappmessage' ], success: function (res) { //alert(res.errmsg); } }); //分享给朋友 wx.onmenushareappmessage({ title: '111', desc: '222', link: 'http://xxx/index.php?m=content&c=index&a=test_show&catid=83&id=134521&from=singlemessage', // 分享链接,该链接域名或路径必须与当前页面对应的公众号js安全域名一致 imgurl: 'http:/xxx/2017/0816/20170816061634987.jpg', success: function () { // 用户确认分享后执行的回调函数 }, cancel: function () { // 用户取消分享后执行的回调函数 }, fail: function (res) { //alert(res.errmsg); //用户分享失败取消的回调函数 } }); }); }, error: function() { alert('ajax request failed!!!!'); return; } }); }); </script>
以上这篇解决微信二次分享不显示摘要和图片的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。