Skip to content

ShareMotion

Parameters

PropertyTypeDefault ValueRequiredDescription
titlestring-NoTitle
descriptionstring-NoDescription
emojiPathstring-YesPath to the emoji, supports network image links, Base64 strings, asset files, and system file paths
scenenumber-NoTarget scene for sharing: 0=share to chat, 1=share to moments, 2=share to favorites

Example

javascript
window.Wechat.shareMotion({
  		title: '分享表情',
  		description: '这是一个表情',
  		filePath: 'www/img/logo.png',
      scene: 0, 
  }, function(res){
    console.log("share success");
  }, function(err) {
    console.error(err);
  }
);

Apache 2.0 License.