定义了onShareTimeline和onShareAppMessage但分享还是灰色的?
根据这个doc https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#onShareTimeline 在page里面定义了两个函数 onShareAppMessage(){
return {
title: '首页',
path: '/pages/learning/index?id=' + this.data.id
}
},
onShareTimeline(){
return {
title: '记忆页',
query: 'id=' + this.data.id
}
}
在开发者工具中分享朋友圈还是灰色的[图片] 发布后在IOS中两个按钮都是灰色的。 有大佬知道是为什么吗? PS:小程序已备案,但未进行微信认证。个人小程序。