var exec = require('cordova/exec'); module.exports = { Scene: { SESSION: 0, // 聊天界面 TIMELINE: 1, // 朋友圈 FAVORITE: 2 // 收藏 }, Type: { APP: 1, EMOTION: 2, FILE: 3, IMAGE: 4, MUSIC: 5, VIDEO: 6, WEBPAGE: 7 }, isInstalled: function (onSuccess, onError) { exec(onSuccess, onError, "Wechat", "isWXAppInstalled", []); }, /** * Share a message to wechat app * * @example * * Wechat.share({ * message: { * title: "Message Title", * description: "Message Description(optional)", * mediaTagName: "Media Tag Name(optional)", * thumb: "http://YOUR_THUMBNAIL_IMAGE", * media: { * type: Wechat.Type.WEBPAGE, // webpage * webpageUrl: "https://github.com/xu-li/cordova-plugin-wechat" // webpage * } * }, * scene: Wechat.Scene.TIMELINE // share to Timeline * }, function () { * alert("Success"); * }, function (reason) { * alert("Failed: " + reason); * }); * */ share: function (message, onSuccess, onError) { exec(onSuccess, onError, "Wechat", "share", [message]); }, /** * Sending an auth request to Wechat * * @example * * Wechat.auth(function (response) { alert(response.code); }); * */ auth: function (scope, state, onSuccess, onError) { if (typeof scope == "function") { // Wechat.auth(function () { alert("Success"); }); // Wechat.auth(function () { alert("Success"); }, function (error) { alert(error); }); return exec(scope, state, "Wechat", "sendAuthRequest"); } if (typeof state == "function") { // Wechat.auth("snsapi_userinfo", function () { alert("Success"); }); // Wechat.auth("snsapi_userinfo", function () { alert("Success"); }, function (error) { alert(error); }); return exec(state, onSuccess, "Wechat", "sendAuthRequest", [scope]); } return exec(onSuccess, onError, "Wechat", "sendAuthRequest", [scope, state]); }, /** * Send a payment request * * @link https://pay.weixin.qq.com/wiki/doc/api/app.php?chapter=9_1 * @example * * var params = { * mch_id: '10000100', // merchant id * prepay_id: 'wx201411101639507cbf6ffd8b0779950874', // prepay id returned from server * nonce: '1add1a30ac87aa2db72f57a2375d8fec', // nonce string returned from server * timestamp: '1439531364', // timestamp * sign: '0CB01533B8C1EF103065174F50BCA001', // signed string * }; * Wechat.sendPaymentRequest(params, function () { * alert("Success"); * }, function (reason) { * alert("Failed: " + reason); * }); * */ sendPaymentRequest: function (params, onSuccess, onError) { exec(onSuccess, onError, "Wechat", "sendPaymentRequest", [params]); } };