客户端唤起小程序验证通用链接不通过,但是配置多人检查无问题。
发布于 7 年前 作者 cwang 10304 次浏览 来自 问答

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(“唤起失败”)

            }  

        })

回到顶部