1.0.2 • Published 6 years ago

cordova-plugin-um-share v1.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

友盟社会化分享 cordova 插件

支持ios, android

依赖

安装

cordova plugin add cordova-plugin-um-share --save

ionic cordova plugin add cordova-plugin-um-share

子插件

只有安装相应的子插件才能显示和使用相应选项

使用方法

打开反馈页面

window.UMShare.open({
  image: 'https://xxx.png', // 缩略图 必须为https协议
  url: 'http://xxx.xxx/xxx', // 链接
  title: 'xxx', // 标题
  desc: 'xxx' // 简介
}, () => {
  console.log('success');
}, e => {
  console.error(e);
});

授权

window.UMShare.auth({
  platform: 1, // 1为微信,4为QQ,其它暂没有
}, userInfo => {
  console.log(userInfo);
}, e => {
  console.error(e);
});