|
发表于 2015-10-15 16:26:29
|
显示全部楼层
android签名是正确的,android微信支付是成功的,就是分享不成功,分享的代码如下:
Model.prototype.row2Click = function(event){
var parentOne = localStorage.getItem("userID");
weixin.share({
message : {
title : "测试",
description : "分享给朋友",
mediaTagName : "Media Tag Name(optional)",
thumb : "http://***/x5/UI2/fdr/img/Logo_new.png ", //http://YOUR_THUMBNAIL_IMAGE",
media : {
type : weixin.Type.WEBPAGE, // webpage
webpageUrl : "http://***/x5/UI2/fdr/register.w
}
},
scene: weixin.Scene.SESSION
},function(){
alert("success");
},function(reason){
alert("failed" + reason);
});
}; |
|