1.注册并认证企业微信
多平台开发企业微信客服是最好的解决方案
企业微信
2.打开微信客服
3.启用微信客服,并添加客服账号
4.接入场景
如果多平台开发可以都接入
里面有步骤,按照步骤走即可(看完官方教程一定回来继续看代码!!)
4.1微信小程序接入
客服连接有用复制一下,然后
看教程即可
附上代码:
wx.openCustomerServiceChat({
//企业微信的企业id
corpId: 'xxx',
extInfo: {
//客服链接
url: 'https://xxx'
},
success: (e) => {
console.log('e', e)
},
fail: (err) => {
console.log('err', err)
}
})
4.2app接入
接入流程和小程序类似,直接上代码文章来源:https://www.toymoban.com/news/detail-504887.html
let sweixin = null
plus.share.getServices(res => {
sweixin = res.find(i => i.id === 'weixin')
if (sweixin) {
sweixin.openCustomerServiceChat({
corpid: 'xxx',
url:'https://xxx'
})
} else {
// plus.nativeUI.alert('当前环境不支持微信操作')
uni.showToast({
title: "当前环境不支持微信操作",
icon: 'error'
})
}
}, function() {
uni.showToast({
title: "获取服务失败,不支持该操作。" + JSON.stringify(e),
icon: 'error'
})
})
uniapp接入客服到此结束
接下来就是繁琐的调试调试。。。。。文章来源地址https://www.toymoban.com/news/detail-504887.html
到了这里,关于uniapp接入微信客服聊天流程(企业微信)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!