+
80
-

uniapp开发的app如何分享微信小程序链接到微信中?

uni

uniapp开发的app如何分享微信小程序链接到微信中?


网友回复

+
0
-

可以用uni.share,在app中分享小程序的链接到微信会话中,两者必须是同一个主体,并且在微信开放平台进行了关联

uni.share({
    provider: 'weixin', // 分享服务提供商(即weixin|qq|sinaweibo)
    scene: "WXSceneSession", //分享到聊天界面
    type: 5, //分享形式 5:小程序
    imageUrl: 'https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/share-logo@3.spng',//官方规定分享图比例是5:4,其它尺寸可能显示不全。
    title: '欢迎体验uniapp',
    miniProgram: {
        id: 'gh_dlkdfgdg', //微信小程序原始id
        path: 'pages/index/index', //点击链接进入的页面
        type: 0, //微信小程序版本类型,可取值: 0-正式版; 1-测试版; 2-体验版。 默认值为0。
        webUrl: 'http://uniapp.dcloud.io' //兼容低版本的网页链接
    },
    success: ret => {
        console.log(JSON.stringify(ret));
    }
});

打开 manifest.json > App模块权限配置,勾选 Share(分享);并填写 appid,如需在iOS平台使用还需要配置通用链接。

800_auto

我知道答案,我要回答