自建应用调用sendChatMessage和shareAppMessage,pc端报错,手机正常?
企业微信: 企业自建应用开发:JS-SDK:分享:wx.invoke('sendChatMessage') 、wx.invoke('shareAppMessage') 某个用户手机端可以正常分享,PC端分享报错 window.wx.invoke('sendChatMessage', {
msgtype:"news", //消息类型,必填
enterChat: true, //为true时表示发送完成之后顺便进入会话,仅移动端3.1.10及以上版本支持该字段
news:
{
link: link , //H5消息页面url 必填
title: title, //H5消息标题
desc: "点击了解详情", //H5消息摘要
imgUrl: share_img_url, //H5消息封面图片URL
},
}, function(res) {
if (res.err_msg == 'sendChatMessage:ok') {
//发送成功
resolve()
}else if(res.err_msg == "sendChatMessage:cancel"){
reject(SHARE_RESULT.CANCEL)
}else{
// pc端就直接走了这里
console.log("sendChatMessage error:"+JSON.stringify(res))
reject(SHARE_RESULT.FAIL)
}
})