Java微信支付-微信红包
程序员文章站
2024-03-11 22:38:01
微信红包的使用已经很广泛,本篇文章介绍了微信发红包的实例,需要有认证的公众号,且开通了微信支付,商户平台且开通了现金红包的权限即可。
商户登陆地址。选择查看营销中心的...
微信红包的使用已经很广泛,本篇文章介绍了微信发红包的实例,需要有认证的公众号,且开通了微信支付,商户平台且开通了现金红包的权限即可。
商户登陆地址。选择查看营销中心的现金红包
现金红包的官网文档说明
先看几个图 简单的测试。前提需要你去商户平台先充值。不支持预支付。本文只是总结微信现金红包接口的调用与实现。具体要根据自己的业务去实现如何调用该接口。
文档中普通红包有关于所有的讲解。 调用必须有商户平台的证书。
需要的参数也都有列出。根据自己需求来决定。
1.java封装一个红包对象
/** * 红包对象 * @author 小帅帅丶 * @date 2016-8-17上午11:12:19 * @开源中国 http://my.oschina.net/xshuai */ public class redpack implements serializable{ private string sign; //根据属性生成的验证 private string mch_billno; //订单号 private string mch_id; //商户号 private string wxappid; // 微信appid private string send_name;// 商户名称 private string re_openid;// 用户openid private string total_amount;// 付款金额 private string total_num;//红包接收人数 现金红包只能是 1 private string wishing;// 红包祝福语 private string client_ip;// 调用接口机器的ip private string act_name;// 活动名称 private string remark;// 备注 private string nonce_str;// 随机字符串 //set get省略 }
2.需要用的工具类 createbillno是生成商户订单号 官网文档要求如下:
/** * 红包工具类 * @author 小帅帅丶 * @date 2016-8-17上午11:12:19 * @开源中国 http://my.oschina.net/xshuai */ public class redpackutil { /** * 生成商户订单号 * @param mch_id 商户号 * @param userid 该用户的userid * @return */ public static string createbillno(){ //组成: mch_id+yyyymmdd+10位一天内不能重复的数字 //10位一天内不能重复的数字实现方法如下: //因为每个用户绑定了userid,他们的userid不同,加上随机生成的(10-length(userid))可保证这10位数字不一样 date dt=new date(); simpledateformat df = new simpledateformat("yyyymmdd"); string nowtime= df.format(dt); int length = 10 ; return wxconstants.mch_id + nowtime + getrandomnum(length); } /** * 生成特定位数的随机数字 * @param length * @return */ public static string getrandomnum(int length) { string val = ""; random random = new random(); for (int i = 0; i < length; i++) { val += string.valueof(random.nextint(10)); } return val; } }
3.前面工作很简单需要的证书和商户号有。且商户平台有金额即可测试现金红包接口
redpack pack = new redpack(null//第一次为空, redpackutil.createbillno()//商户订单号, "你自己的商户号", "公众号的appid", "名称", "要发送用户的openid", "发送金额 单位是分 例如100 则是1元rmb", "只能是1", "9", "127.0.0.1", "活动名称", "备注", "随机字符串");
测试中除了sign为空。其他都可以填充。现在我们生成sign签名;根据pack对象中的参数去生成sign;
具体签名算法 官网给出的地址
可以在这个测试页面进行对比看加密后是否一致。
string signs = signature.getsign(pack); //生成的signset到pack对象中 pack.setsign(signs); //将对象转为xml格式 微信要求xml格式 string xml = xmlutil.objtoxml(pack,redpack.class,"xml");
4.发送红包
redpackservice service = new redpacservice(); string result = service.redpackorder(xml);//请求返回的数据是否成功
public class redpackservice{ /** * 红包接口地址 */ private final static string redp_order_path="https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack"; /** * 红包 * 需要证书 * @param paramxml * @return */ public static string redpackorder(string paramxml){ try { wxbaseservice service=new wxbaseservice(redp_order_path); return service.sendpost(paramxml); } catch (exception e) { log.error(e.tostring()); } return null; } } /** * 通过https往api post xml数据 * * @param url api地址 * @param xmlobj 要提交的xml数据对象 * @return api回包的实际数据 * @throws ioexception * @throws keystoreexception * @throws unrecoverablekeyexception * @throws nosuchalgorithmexception * @throws keymanagementexception */ public string sendpost(string url, string postdataxml) throws ioexception, keystoreexception, unrecoverablekeyexception, nosuchalgorithmexception, keymanagementexception { if (!hasinit) { init(); } string result = null; httppost httppost = new httppost(url); //解决xstream对出现双下划线的bug // xstream xstreamforrequestpostdata = new xstream(new domdriver("utf-8", new xmlfriendlynamecoder("-_", "_"))); //将要提交给api的数据对象转换成xml格式数据post给api // string postdataxml = xstreamforrequestpostdata.toxml(xmlobj); util.log("api,post过去的数据是:"); util.log(postdataxml); //得指明使用utf-8编码,否则到api服务器xml的中文不能被成功识别 stringentity postentity = new stringentity(postdataxml, "utf-8"); httppost.addheader("content-type", "text/xml"); httppost.setentity(postentity); //设置请求器的配置 httppost.setconfig(requestconfig); util.log("executing request" + httppost.getrequestline()); try { httpresponse response = httpclient.execute(httppost); httpentity entity = response.getentity(); result = entityutils.tostring(entity, "utf-8"); } catch (connectionpooltimeoutexception e) { log.e("http get throw connectionpooltimeoutexception(wait time out)"); } catch (connecttimeoutexception e) { log.e("http get throw connecttimeoutexception"); } catch (sockettimeoutexception e) { log.e("http get throw sockettimeoutexception"); } catch (exception e) { log.e("http get throw exception"); } finally { httppost.abort(); } return result; }
5.返回的xml看是否成功 由于只充值了1元 前几天已经测试发送 所以返回如下信息
<xml> <return_code><![cdata[success]]></return_code> <return_msg><![cdata[帐号余额不足,请到商户平台充值后再重试]]></return_msg> <result_code><![cdata[fail]]></result_code> <err_code><![cdata[notenough]]></err_code> <err_code_des><![cdata[帐号余额不足,请到商户平台充值后再重试]]></err_code_des> <mch_billno><![cdata[1371729102201629220149762756]]></mch_billno> <mch_id><![cdata[这里是商户号为了保密删除了]]></mch_id> <wxappid><![cdata[微信公众号appid]]></wxappid> <re_openid><![cdata[od5qqw8e_lbiaw9szzud-2xhtmvx这个是用户的openid]]></re_openid> <total_amount>100</total_amount> </xml>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。