使用uniapp开发小程序做页面分享,设置了分享好友但是不生效?
3.5.5基础库 appid:wx2aaea35ecf34128e 在编辑器是可以显示出来定义分享的内容,但是手机真机 title和img都是不存在的 直接是页面图当成了卡片图,是需要后台认证才能使用改功能吗? 目前看后台是个人并且未认证 [图片] 下面是手机真机 [图片] mac真机调试就说小程序存在违规 分享不可用。但是查看小程序后台并不存在违规记录。 [图片] import {
// onLoad,
onShareAppMessage,
onShareTimeline
} from '@dcloudio/uni-app';
uni.showShareMenu({
withShareTicket: true,
menus: ["shareAppMessage", "shareTimeline"],
success(res) {
console.log(res, '成功了')
},
fail(e) {
console.log(e, '失败了')
}
})
onShareAppMessage(()=>{
return {
title: '分享卡片标题',
imageUrl: '',
path: '/pages/home/index'
}
})