分享消息到当前会话
企业微信使用会话发送小程序报错
相关参数值
相关报错原因
相关关联小程序
相关代码
if(val.type == 5){ // 小程序
msgtype = 'miniprogram'
data = { miniprogram : {
appid: val.content.applet.appid,
title: val.content.applet.title,
page: val.content.applet.url,
imgUrl: val.content.applet.appletMedia[0].response.data.url
}}
}
// jWeixin 就是wx
jWeixin.invoke('sendChatMessage', {
msgtype:msgtype, //消息类型,必填
enterChat: true, //为true时表示发送完成之后顺便进入会话,仅移动端3.1.10及以上版本支持该字段
...data,
}, function(res) {
if (res.err_msg == 'sendChatMessage:ok') {
//发送成功
}
})