Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 796 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 796 Bytes

cordova-plugin-tencent-share

Using the plugin

Example -share to qq friend

TencentShare.qqShare({
    "appid": "xxxxxxx",
    "title": "title",
    "summary": "summary",
    "image_url": "http://img3.cache.netease.com/photo/0005/2013-03-07/8PBKS8G400BV0005.jpg",
    "target_url": "http://weibo.com/u/5398990359"
}, function() {
      console.log("ok");
}, function() {
    console.log("error");
});

Example -share to qzone

TencentShare.qzoneShare({
    "appid": "xxxxxxx",
    "title": "title",
    "summary": "summary",
    "image_url": "http://img3.cache.netease.com/photo/0005/2013-03-07/8PBKS8G400BV0005.jpg",
    "target_url": "http://weibo.com/u/5398990359"
}, function() {
      console.log("ok");
}, function() {
    console.log("error");
});