customshare

立即使用

wxshare

论坛示例

为帮助用户更快更好的使用模块,论坛维护了一个示例,示例中包含示例代码.

概述

模块要求 编译环境(打包环境) 和安装环境 均需要选择 Android 4.1 及以上系统版本

customshare 是一款,可以定制微信来源(小尾巴)的分享模块. 目前可定制:1.手机QQ 2.UC浏览器 3.QQ 浏览器 4.新浪微博 5.今日头条

可根据需求修改相关逻辑: 微信:liupan4018

模块接口

wxshare

分享入口:

  1. var param = {
  2. title:"定制分享测试",
  3. url:"www.baidu.com",
  4. imgUrl:"http://f.hiphotos.baidu.com/image/pic/item/09fa513d269759ee50f1971ab6fb43166c22dfba.jpg",
  5. desc:"点击测试",
  6. type:0};
  7. customshare.wxshare(param, function(ret, err){});

param

类型 json

  1. {
  2. title:"定制分享测试",
  3. url:"www.baidu.com",
  4. imgUrl:"http:// f.hiphotos.baidu.com/image/pic/item/09fa513d269759ee50f1971ab6fb43166c22dfba.jpg",
  5. desc:"点击测试",
  6. type:0
  7. }
  8. title: //分享内容标题(不能为 null)- 必传字段
  9. url: //分享内容落地页(不能为 null)- 必传字段
  10. imgUrl: //分享内容图片(不能为 null)- 必传字段
  11. desc: //分享文本描述(不能为 null)- 必传字段
  12. type: //分享类型 0.微信好友 1.朋友圈,3.系统分享好友

callback(ret)

无返回值

示例代码

  1. var param = {
  2. title:"定制分享测试",
  3. url:"www.baidu.com",
  4. imgUrl:"http://f.hiphotos.baidu.com/image/pic/item/09fa513d269759ee50f1971ab6fb43166c22dfba.jpg",
  5. desc:"点击测试",
  6. type:0};
  7. customshare.wxshare(param, function(ret, err){});

可用性

Android 系统 4.1 及以上系统