跟代码没关系 ,app打开小程序失败,按文档说明都做了的, 看录像效果。 [视频] android 打开小程序代码 /** * 打开小程序 */ public static void openMiniProgram() { String appId = "wx45ada6b687d89a74"; // 填应用AppId oldAppId: wx53adf1b71170b88f newAppId: wx45ada6b687d89a74 IWXAPI api = WXAPIFactory.createWXAPI(GOApp.getCurrentApp(), appId); WXLaunchMiniProgram.Req req = new WXLaunchMiniProgram.Req(); req.userName = "gh_40ad2ceaf1fb"; // 填小程序原始id oldId: gh_0b34f9d29547 newId: gh_40ad2ceaf1fb req.path = "pages/index/index"; //拉起小程序页面的可带参路径,不填默认拉起小程序首页 if (BuildConfig.DEBUG) { //req.path = "pages/index/index?phone="+ GOConstants.userInfo.getPhone(); } if (BuildConfig.DEBUG) { req.miniprogramType = WXLaunchMiniProgram.Req.MINIPROGRAM_TYPE_PREVIEW;// 可选打开 开发版,体验版和正式版 } else { req.miniprogramType = WXLaunchMiniProgram.Req.MINIPTOGRAM_TYPE_RELEASE; } api.sendReq(req); } @娇华
app打开小程序 跳转失败?急急急完全按照官网文档做的,微信提示 “跳转失败”; AppID(小程序ID) wx45ada6b687d89a74 移动appid : AppID:wx53adf1b71170b88f 已经正确关联; sdk用的也是最新的。 android手机9.0系统,微信版本:7.0.3 [图片]
2019-04-01