shareSdk分享微信小程序

shareSdk分享到微信小程序

    private void showShare(String platform) {
        //指定分享的平台,如果为空,还是会调用九宫格的平台列表界面
        if (platform != null && oneKeyShare != null) {
            oneKeyShare.setPlatform(platform);
            oneKeyShare.setShareContentCustomizeCallback(new ShareContentCustomizeCallback() {
                @Override
                public void onShare(Platform platform,
                                    cn.sharesdk.framework.Platform.ShareParams paramsToShare) {
                 
                        paramsToShare.setShareType(Platform.SHARE_WXMINIPROGRAM);
   paramsToShare.setWxUserName(mini_app_id);                     
                            paramsToShare.setWxPath(mini_app_url);

                     
                    }
                }
            });
            oneKeyShare.show(mContext);
        }
    }

gradle中配置的注意点

shareSdk分享微信小程序_第1张图片
image.png
  1. miniprogramType 0: 正式 1:开发版本 2:体验版本

小程序打开app,在微信回调的页面 获取参数

shareSdk分享微信小程序_第2张图片
image.png

shareSdk分享微信小程序_第3张图片
image.png

你可能感兴趣的:(shareSdk分享微信小程序)