Skip to content

分享网页(shareWebpage)

参数

属性类型默认值必填说明
titlestring-标题
descriptionstring-描述
thumbPathstring-分享缩略图,支持网络图片链接,Base64字符串,Assets资源文件,系统文件路径
webpageUrlstring-分享 webpage url
scenenumber-发送的目标场景,0=分享到会话,1=分享到朋友圈,2=分享到收藏

示例

javascript
window.Wechat.shareWebpage({
      videoUrl: 'https://byteee.fund',
  		title: '分享视频',
  		description: '这是一个视频',
  		thumbPath: 'www/img/logo.png',
      scene: 0, 
  }, function(res){
    console.log("share success");
  }, function(err) {
    console.error(err);
  }
);

Apache 2.0 License.