在 App分享为微信小程序(App中分享一个内容到微信好友,对方微信中呈现的是一个小程序卡片)案例的使用过程中,使用官方给到的 如下代码 ,微信APP客户端提示不支持此类型。经过本人研究及多次尝试,发现官方给到的如下代码,缺少 scene 参数。
官方提供的代码如下:
uni.share({
provider: 'weixin',
type: 5,
imageUrl: 'https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/share-logo@3.png',
title: '欢迎体验uniapp',
miniProgram: {
id: 'gh_abcdefg',
path: 'pages/index/index',
type: 0,
webUrl: 'http://uniapp.dcloud.io'
},
success: ret => {
console.log(JSON.stringify(ret));
}
});
多次尝试后,加入 scene 参数的代码如下:
uni.share({
provider: 'weixin',
type: 5,
imageUrl: 'https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/share-logo@3.png',
title: '欢迎体验uniapp',
scene : 'WXSceneSession',
miniProgram: {
id: 'gh_abcdefg',
path: 'pages/index/index',
type: 0,
webUrl: 'http://uniapp.dcloud.io'
},
success: ret => {
console.log(JSON.stringify(ret));
}
});
期望官方更改代码,加上 scene : 'WXSceneSession', 的参数值。
联系方式
wx: wolfman125