# wx.shareVideoMessage(Object object)

基础库 2.16.1 开始支持,低版本需做兼容处理

Promise 风格 调用:支持

小程序插件:不支持

# 功能描述

转发视频到聊天

# 参数

# Object object

属性 类型 默认值 必填 说明
videoPath string 要分享的视频地址,必须为本地路径或临时路径
thumbPath string 缩略图路径,若留空则使用视频首帧
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

# 示例代码


  // callback 写法
  wx.downloadFile({
    url: URL, // 下载url
    success (res) {
      // 下载完成后转发
      wx.shareVideoMessage({
        videoPath: res.tempFilePath,
        success() {},
        fail: console.error,
      })
    },
    fail: console.error,
  })

  // async await 写法
  const { tempFilePath } = await wx.downloadFile({
    url: URL, // 下载url
  })
  // 下载完成后转发
  await wx.shareVideoMessage({
    videoPath: res.tempFilePath,
  })