从基础库 2.14.0 开始支持
可将用户在小程序内的运动数据分享到微信运动。
wx.shareToWeRun({
recordList: [{
typeId: 4001,
number: 180
}, {
typeId: 3001,
distance: 100000
}],
success(res) {
wx.showToast({
title: '打卡成功',
})
},
fail(res) {
wx.showToast({
icon: "none",
title: '打卡失败',
})
}
})