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
| wx.agentConfig({
agentid: "1000004",
appId: "ww319d502067667268",
corpid: "ww319d502067667268",
jsApiList: ["selectExternalContact", "openEnterpriseChat", "shareToExternalContact"], //必填
nonceStr: "VZ7ydRc7FDrc6wit",
signature: "22024421a7dfd0d2a877e1cedd08c6d97619fb94",
timestamp: "1630548726952",
success: function(res) {
// 回调
console.log(res);
// wx.invoke(
// "selectExternalContact",
// {
// filterType: 0, //0表示展示全部外部联系人列表,1表示仅展示未曾选择过的外部联系人。默认值为0;除了0与1,其他值非法。在企业微信2.4.22及以后版本支持该参数
// },
// function(res) {
// if (res.err_msg == "selectExternalContact:ok") {
// console.log(res.userIds);
// that.startPast(res.userIds); //返回此次选择的外部联系人userId列表,数组类型
// } else {
// //错误处理
// }
// }
// );
wx.invoke(
"shareToExternalContact", {
text: {
content:"hello world", // 文本内容
},
},
function(res) {
console.log(res);
if (res.err_msg == "shareToExternalContact:ok") {
}
}
);
},
fail: function(res) {
console.log(res);
if (res.errMsg.indexOf("function not exist") > -1) {
alert("版本过低请升级");
}
},
});
|