https://developers.weixin.qq.com/miniprogram/dev/api/share/wx.shareVideoMessage.html
微信PC端调用视频转发失败,手机端可以转发成功,请问是不是API兼容问题,然后PC端调用视频转发收藏该调用哪个api,求助
wx.downloadFile({
url: filepath,
success :(res)=> {
// 视频下载完成后触发
wx.hideLoading()
wx.shareVideoMessage({
videoPath: res.tempFilePath,
success() {
},
fail: (error) => {
wx.showToast({
title: "转发失败" + error,
icon: "none",
duration: 2000,
});
},
})
},
fail: (error) => {
wx.showToast({
title: "转发失败",
icon: "none",
duration: 2000,
});
},
})
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。