微信分享的标题、缩略图、连接及描述该如何设置,使用微信分享过程中会遇到这个情况,无解的朋友可以看看下面的代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<script>
var imgUrl = 'http://topic.xcar.com.cn/201403/ad_q3/pic/banner.jpg' ;
var lineLink = 'http://topic.xcar.com.cn/201403/ad_q3/index.php' ;
var descContent = "http://topic.xcar.com.cn/201403/ad_q3/index.php" ;
var shareTitle = '【奥迪Q3开启尊享礼遇季】报名试驾,赢取精美礼品' ;
var appid = 'wxc9937e3a66af6dc8' ;
function shareFriend() {
WeixinJSBridge.invoke( 'sendAppMessage' ,{
"appid" : appid,
"img_url" : imgUrl,
"img_width" : "640" ,
"img_height" : "640" ,
"link" : lineLink,
"desc" : descContent,
"title" : shareTitle
}, function (res) {
_report( 'send_msg' , res.err_msg);
})
}
function shareTimeline() {
WeixinJSBridge.invoke( 'shareTimeline' ,{
"img_url" : imgUrl,
"img_width" : "640" ,
"img_height" : "640" ,
"link" : lineLink,
"desc" : descContent,
"title" : shareTitle
}, function (res) {
_report( 'timeline' , res.err_msg);
});
}
function shareWeibo() {
WeixinJSBridge.invoke( 'shareWeibo' ,{
"content" : descContent,
"url" : lineLink,
}, function (res) {
_report( 'weibo' , res.err_msg);
});
}
// 当微信内置浏览器完成内部初始化后会触发WeixinJSBridgeReady事件。
document.addEventListener( 'WeixinJSBridgeReady' , function onBridgeReady() {
// 发送给好友
WeixinJSBridge.on( 'menu:share:appmessage' , function (argv){
shareFriend();
});
// 分享到朋友圈
WeixinJSBridge.on( 'menu:share:timeline' , function (argv){
shareTimeline();
});
// 分享到微博
WeixinJSBridge.on( 'menu:share:weibo' , function (argv){
shareWeibo();
});
}, false );
</script>
|