如视频所示,接入获客链接后,在android端的跳转异常,没有到微信内拉起助手账号页,而是直接在本应用内拉起了账号页,且返回后会直接跳到launcher,体验比较差
代码实现:
路由用的是官方文档上的schema格式
weixin://biz/ww/profile/https%3A%2F%2Fwork.weixin.qq.com%2Fca%2FcaXXXXX%3Fcustomer_channel%3DWORK
跳转方式是android默认的路由跳转
val uri = Uri.parse("weixin://biz/ww/profile/${URLEncoder.encode(link)}")
Intent(Intent.ACTION_VIEW, uri).apply {
activity.startActivity(this)
}
微信版本:8.0.40
麻烦看下有什么方法可以解决这个体验问题