wechat.js 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. import * as WeChat from 'react-native-wechat';
  2. import request from '../utils/request';
  3. import AndroidUtil from '../../util/AndroidUtil';
  4. /**
  5. public static String WX_APPID = "wx51acc19c8f7a0f6f";
  6. public static String WX_SECRET = "e830d45f497025041269ef6221140c3d";
  7. */
  8. WeChat.registerApp('wx51acc19c8f7a0f6f');
  9. export default class wechat {
  10. //登录方法
  11. static wechatLogin(callback) {
  12. WeChat.isWXAppInstalled().then((isInstalled) => {
  13. if (isInstalled) {
  14. WeChat.sendAuthRequest('snsapi_userinfo').then((result) => {
  15. var object = JSON.parse(JSON.stringify(result));
  16. var loginUrl =
  17. 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=wx51acc19c8f7a0f6f&secret=e830d45f497025041269ef6221140c3d&code=' +
  18. object['code'] +
  19. '&grant_type=authorization_code';
  20. request(loginUrl).then((res) => {
  21. // console.log('code请求下一步返回结果:' + res['openid']);
  22. // callback(res);
  23. var getUserUrl =
  24. 'https://api.weixin.qq.com/sns/userinfo?access_token=' +
  25. res['access_token'] +
  26. '&openid=' +
  27. res['openid'];
  28. console.log('getUserUrl:' + getUserUrl);
  29. request(getUserUrl).then((user) => {
  30. callback(user);
  31. });
  32. });
  33. });
  34. } else {
  35. alert('请安装微信');
  36. }
  37. });
  38. }
  39. /**
  40. * 好友文字分享
  41. * @param {string} descriptiontext 测试微信好友分享的文本内容
  42. */
  43. static shareToSessionText(descriptiontext) {
  44. WeChat.isWXAppInstalled().then((isInstalled) => {
  45. if (isInstalled) {
  46. WeChat.shareToSession({
  47. type: 'text',
  48. description: descriptiontext
  49. })
  50. .then((result) => {
  51. console.log(result);
  52. })
  53. .catch((error) => {
  54. error(error.message);
  55. });
  56. } else {
  57. alert('请安装微信');
  58. }
  59. });
  60. }
  61. /**
  62. * 微信好友分享链接
  63. * @param {string} title_text 分享的标题
  64. * @param {string} description_text 分享的标题内容
  65. * @param {string} thumbImage_url 分享的标题图片
  66. * @param {string} webpageUrl_url 分享的链接
  67. */
  68. static shareToSessionNews(title_text, description_text, thumbImage_url, webpageUrl_url) {
  69. WeChat.isWXAppInstalled().then((isInstalled) => {
  70. if (isInstalled) {
  71. WeChat.shareToSession({
  72. title: title_text,
  73. description: description_text,
  74. thumbImage: thumbImage_url,
  75. type: 'news',
  76. webpageUrl: webpageUrl_url
  77. }).catch((error) => {
  78. alert(error.message);
  79. });
  80. } else {
  81. alert('请安装微信');
  82. }
  83. });
  84. }
  85. /**
  86. * 微信朋友圈分享的文本
  87. * @param {string} description_text 测试微信朋友圈分享的文本内容
  88. */
  89. static shareToTimelineText(description_text) {
  90. WeChat.isWXAppInstalled().then((isInstalled) => {
  91. if (isInstalled) {
  92. WeChat.shareToTimeline({
  93. type: 'text',
  94. description: description_text
  95. }).catch((error) => {
  96. console.log(error.message);
  97. });
  98. } else {
  99. alert('请安装微信');
  100. }
  101. });
  102. }
  103. /**
  104. * 微信朋友圈分享链接
  105. * @param {string} title_text 分享的标题
  106. * @param {string} description_text 分享的标题内容
  107. * @param {string} thumbImage_url 分享的标题图片
  108. * @param {string} webpageUrl_url 分享的链接
  109. */
  110. static shareToTimelineNews(title_text, description_text, thumbImage_url, webpageUrl_url) {
  111. WeChat.isWXAppInstalled().then((isInstalled) => {
  112. if (isInstalled) {
  113. WeChat.shareToTimeline({
  114. title: title_text,
  115. description: description_text,
  116. thumbImage: thumbImage_url,
  117. type: 'news',
  118. webpageUrl: webpageUrl_url
  119. }).catch((error) => {
  120. console.log(error.message);
  121. });
  122. } else {
  123. alert('请安装微信');
  124. }
  125. });
  126. }
  127. /**
  128. * 微信支付
  129. * @param {string} partnerId 商家向财付通申请的商家id
  130. * @param {string} prepayId 预支付订单
  131. * @param {string} nonceStr 随机串,防重发
  132. * @param {string} timeStamp 时间戳,防重发.
  133. * @param {string} package 商家根据财付通文档填写的数据和签名
  134. * @param {string} sign 商家根据微信开放平台文档对数据做的签名
  135. */
  136. static pay(partnerId, prepayId, nonceStr, timeStamp, packages, sign) {
  137. WeChat.isWXAppInstalled().then((isInstalled) => {
  138. if (isInstalled) {
  139. WeChat.pay({
  140. partnerId: partnerId, // 商家向财付通申请的商家id
  141. prepayId: prepayId, // 预支付订单
  142. nonceStr: nonceStr, // 随机串,防重发
  143. timeStamp: timeStamp, // 时间戳,防重发.
  144. package: packages, // "Sign=WXPay", // 商家根据财付通文档填写的数据和签名
  145. sign: sign // 商家根据微信开放平台文档对数据做的签名
  146. })
  147. .then((requestJson) => {
  148. //支付成功回调
  149. if (requestJson.errCode == '0') {
  150. //回调成功处理
  151. }
  152. })
  153. .catch((err) => {
  154. alert('支付失败');
  155. });
  156. } else {
  157. alert('请安装微信');
  158. }
  159. });
  160. }
  161. /**
  162. 跳转小程序(需要改 react-native-wechat插件
  163. 1.删除react-native-android默认的jar包,直接引用微信官网的包,或者下载官方最新包wechat-sdk-android-with-mta-x.x.x.jar
  164. 2.在react-native-wechat插件的index.js中,增加toMiniProgram方法)
  165. 3.在react-native-wechat插件WeChatModule中,删除旧的引用,增加新的引用
  166. import com.tencent.mm.opensdk.constants.ConstantsAPI;
  167. import com.tencent.mm.opensdk.modelbase.BaseReq;
  168. import com.tencent.mm.opensdk.modelbase.BaseResp;
  169. import com.tencent.mm.opensdk.modelbiz.WXLaunchMiniProgram;
  170. import com.tencent.mm.opensdk.modelmsg.SendAuth;
  171. import com.tencent.mm.opensdk.modelmsg.SendMessageToWX;
  172. import com.tencent.mm.opensdk.modelmsg.WXFileObject;
  173. import com.tencent.mm.opensdk.modelmsg.WXImageObject;
  174. import com.tencent.mm.opensdk.modelmsg.WXMediaMessage;
  175. import com.tencent.mm.opensdk.modelmsg.WXMusicObject;
  176. import com.tencent.mm.opensdk.modelmsg.WXTextObject;
  177. import com.tencent.mm.opensdk.modelmsg.WXVideoObject;
  178. import com.tencent.mm.opensdk.modelmsg.WXWebpageObject;
  179. import com.tencent.mm.opensdk.modelpay.PayReq;
  180. import com.tencent.mm.opensdk.modelpay.PayResp;
  181. import com.tencent.mm.opensdk.openapi.IWXAPI;
  182. import com.tencent.mm.opensdk.openapi.IWXAPIEventHandler;
  183. import com.tencent.mm.opensdk.openapi.WXAPIFactory;
  184. 4.在react-native-wechat插件WeChatModule中,增加跳转小程序方法
  185. @ReactMethod
  186. public void toMiniProgram(String programId, String path) {
  187. WXLaunchMiniProgram.Req req = new WXLaunchMiniProgram.Req();
  188. req.userName = programId; // 填小程序原始id
  189. req.path = path; //拉起小程序页面的可带参路径,不填默认拉起小程序首页
  190. req.miniprogramType = WXLaunchMiniProgram.Req.MINIPTOGRAM_TYPE_RELEASE;// 可选打开 开发版,体验版和正式版
  191. api.sendReq(req);
  192. }
  193. */
  194. static toMiniProgram(programId, path) {
  195. WeChat.toMiniProgram(programId, path);
  196. }
  197. }
  198. /***
  199. //github:https://github.com/yorkie/react-native-wechat
  200. 使用方法:
  201. 1.登录使用方法,返回object
  202. wechat.wechatLogin((user) => {
  203. console.log('openid:' + user['openid']);
  204. console.log('unionid:' + user['unionid']);
  205. console.log('nickname:' + user['nickname']);
  206. console.log('sex:' + user['sex']);
  207. console.log('avatar:' + user['province'] + '--' + user['city']);
  208. });
  209. 2.跳转小程序方法
  210. wechat.toMiniProgram('gh_d81480f7a2fd', '');
  211. //微信各种分享方法传参定义
  212. {
  213. type {Number} type of this message. Can be {news|text|imageUrl|imageFile|imageResource|video|audio|file}
  214. thumbImage {String} Thumb image of the message, which can be a uri or a resource id.
  215. description {String} The description about the sharing.
  216. webpageUrl {String} Required if type equals news. The webpage link to share.
  217. imageUrl {String} Provide a remote image if type equals image.
  218. videoUrl {String} Provide a remote video if type equals video.
  219. usicUrl {String} Provide a remote music if type equals audio.
  220. filePath {String} Provide a local file if type equals file.
  221. fileExtension {String} Provide the file type if type equals file.
  222. }
  223. */