1、分享网页文章到微信时自定义缩略图、链接、标题和摘要的方法:
var imgUrl = http://www.gettool.cn/GetwxLink/xxx.jpg';
var lineLink = 'http://www.gettool.cn/GetwxLink/';
var descContent = "GetwxLink -
专注站长技术和互联网资讯!";
var shareTitle = 'GetwxLink';
var appid = '';
function shareFriend() {
WeixinJSBridge.invoke('sendAppMessage',{
"appid": appid,
"img_url": imgUrl,
"img_width": "200",
"img_height": "200",
"link": lineLink,
"desc": descContent,
"title": shareTitle
}, function(res) {
//_report('send_msg', res.err_msg);
})
}
function shareTimeline() {
WeixinJSBridge.invoke('shareTimeline',{
"img_url": imgUrl,
"img_width": "200",
"img_height": "200",
"link": lineLink,
"desc": descContent,
"title": shareTitle
}, function(res)