安卓 url 跳转到微信小程序支付

安卓 url 跳转到微信小程序支付

//这里的AppId是Android应用的appid,不是小程序的AppId
String appId = "wx111111111111";
IWXAPI api = WXAPIFactory.createWXAPI(Utils.getContext(), appId);
 
WXLaunchMiniProgram.Req req = new WXLaunchMiniProgram.Req();
// 填小程序原始id
req.userName = "gh_22222222222";
//拉起小程序页面的可带参路径,不填默认拉起小程序首页,
//req.path = "";
req.miniprogramType = WXLaunchMiniProgram.Req.MINIPTOGRAM_TYPE_RELEASE;

你可能感兴趣的:(安卓 url 跳转到微信小程序支付)