uniapp开发的app如何分享微信小程序链接到微信中?
网友回复
可以用uni.share,在app中分享小程序的链接到微信会话中,两者必须是同一个主体,并且在微信开放平台进行了关联
uni.share({
provider: 'weixin', // 分享服务提供商(即weixin|qq|sinaweibo)
scene: "WXSceneSession", //分享到聊天界面
type: 5, //分享形式 5:小程序
imageUrl: 'https://img-cdn-qiniu.dclou...点击查看剩余70%


