码迷,mamicode.com
首页 > 微信 > 详细

PHP 微信分享(及二次分享)

时间:2017-08-17 12:57:29      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:图标   desc   检测   方案   func   log   false   sha   strong   

js部分:

<script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<script>
var appid = appid;
var timestamp = timestamp;
var nonceStr = nonceStr;
var signature = signature;
wx.config({
    debug: false,
    appId: appid,
    timestamp: timestamp,
    nonceStr: nonceStr,
    signature: signature,
    jsApiList: [
        "onMenuShareAppMessage",
        "onMenuShareTimeline",
        "chooseImage",
        "uploadImage",
        "downloadImage"
    ]
});
wx.ready(function(){
	  wx.onMenuShareTimeline({
		    title: title,
		    desc: desc,
		    link: link, // 分享链接
		    imgUrl: imgUrl,// 分享图标
		    
		});
	  
	  wx.onMenuShareAppMessage({
	      title: title,
	      desc:  desc,
	      link: link,
	      imgUrl: imgUrl,
	    });
});
</script>

 php部分:就是微信demo 里面的代码

开发的时候 把  debug:true 开启调试

问题一:输出的调试信息 config:invalid signature

解决方案:所有代码都对的情况,发现access_token获取不到,可以确定下访问IP是否添加到白名单

问题二:二次分享无法正确配置错误信息

原因:二次分享后的--->url:xxxxxxxxx&from=singlemessage&isappinstalled=0

   朋友圈   from=timeline&isappinstalled=0
   微信群   from=groupmessage&isappinstalled=0
   好友分享 from=singlemessage&isappinstalled=0

 

   在连接后加上&再进行分享,分享成功中红色链接内容,是微信自动为分享链接添加的内容,目的是为了记录分享来源

解决方案:a.获取二次分享的URL先去掉微信加的参数

        b.服务端做 redirect::to(url);

问题三:前面两步都确定没有问题后,发现分享时好时坏

解决方案:可以检测下分享 的 title或desc 是否有特殊字符(换行等)

PHP 微信分享(及二次分享)

标签:图标   desc   检测   方案   func   log   false   sha   strong   

原文地址:http://www.cnblogs.com/zouzhe0/p/7380501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!