客户端唤起小程序验证通用链接不通过,但是配置多人检查无问题。
let launchMiniProgramReq = WXLaunchMiniProgramReq.object()
launchMiniProgramReq.userName = “xxxx”
launchMiniProgramReq.path = “pages/shop/index/index?brokerId=1144660”
launchMiniProgramReq.miniProgramType = .release
return WXApi.send(launchMiniProgramReq, completion: { (result) in
if result {
print(“唤起成功”)
} else {
print(“唤起失败”)
}
})