【求助】企业微信自建应用,调用createChatWithMsg接口报no_premission
在自建应用需要调用创建群聊API的页面上先调用了wx.agentConfig,并且显示成功,再调用createChatWithMsg接口创建群聊但是返回fail_no permission,各位大佬有没有遇到同样的问题,是怎么解决的?调用的代码片段: wx.invoke('createChatWithMsg', {
msg: {
msgtype: 'link',
link: {
url: 'https:www.baidu.com'
}
}
}, function(res) {
console.log('315res:------------ ', res);
}
});