【笔记】微信支付 第二弹SDK-两行代码解决支付
本帖最后由 奋斗丶小Z 于 2016-6-6 13:51 编辑其实我发这类的文章只是想跟大家分享一下自己这方面的一些经验!这类文章都是有关于微信商户对接的技术文章 看不懂的应该多学习这方面的知识,不然我跟你解释千万遍也是徒劳的!
今天这篇文章是关于微信SDK的文章 同样的我也会跟大家分享代码希望对大家有所帮助!
背景让使用微信支付的朋友最快速度接入微信支付.
核心两行代码解决微信支付提供的各种服务, 开箱即用, 可扩展性超强(只需根据服务的上下行协议定义协议类后, 放入工厂即可获取调用结果).
架构图
http://arccode.net/images/wx-pay-sdk.jpg
[*]项目源代码
[*]源码地址 http://wocoding.com/item.htm?hashId=wZlZgM81
目前支持的服务及调用示例所有服务在单元测试类(WXPayClientTest.java)中均已测试通过, 下行参数response.isSuccess == true表示服务调用成功.
扫码支付[*]文档详见: https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_1
[*]
String nonceStr = SDKUtils.genRandomStringByLength(32);UnifiedOrderRequest request = new UnifiedOrderRequest("wuspace-899",SDKUtils.genOutTradeNo(),1, "192.168.1.1", asyncNotifyUrl, "NATIVE", nonceStr);UnifiedOrderResponse response = wxPayClient.execute(request);Assert.assertNotNull(response);LOG.info(JSON.toJSONString(response));// TODO 开发人员根据 response中的属性值处理业务逻辑, 此处可完美嵌入业务层(小型系统)或服务层(大型系统)
公众号支付
[*]文档详见: https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_1
[*]
String nonceStr = SDKUtils.genRandomStringByLength(32);
UnifiedOrderRequest request = new UnifiedOrderRequest("wuspace-899",SDKUtils.genOutTradeNo(),
1, "192.168.1.1", asyncNotifyUrl, "JSAPI", nonceStr);
request.setOpenId("oKVmeuHht8J0Ni58CSNe474AHA3E");
UnifiedOrderResponse response = wxPayClient.execute(request);
Assert.assertNotNull(response);LOG.info(JSON.toJSONString(response));// TODO 开发人员根据 response中的属性值处理业务逻辑, 此处可完美嵌入业务层(小型系统)或服务层(大型系统)
APP支付
[*]文档详见: https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_1
[*]
String nonceStr = SDKUtils.genRandomStringByLength(32);
UnifiedOrderRequest request = new UnifiedOrderRequest("wuspace-899",SDKUtils.genOutTradeNo(),
1, "192.168.1.1", asyncNotifyUrl, "APP", nonceStr);UnifiedOrderResponse response = wxPayClient.execute(request);Assert.assertNotNull(response);LOG.info(JSON.toJSONString(response));// TODO 开发人员根据 response中的属性值处理业务逻辑, 此处可完美嵌入业务层(小型系统)或服务层(大型系统)
商家支付
文档详见: https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=14_2
String nonceStr = SDKUtils.genRandomStringByLength(32);
String customerOpenId = "oKVmeuHht8J0Ni58CSNe474AHA3E";
MchPayRequest mchPayRequest = new MchPayRequest(SDKUtils.genOutTradeNo(),
customerOpenId, "NO_CHECK", 100, "xxxx年xx月结算", "192.168.1.1", nonceStr);MchPayResponse response = wxPayVIPClient.execute(mchPayRequest);Assert.assertNotNull(response);LOG.info(JSON.toJSONString(response));// TODO 开发人员根据 response中的属性值处理业务逻辑, 此处可完美嵌入业务层(小型系统)或服务层(大型系统)
退款
文档详见: https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_4&index=6
String nonceStr = SDKUtils.genRandomStringByLength(32);
RefundRequest request = new RefundRequest("T15121416014891124211768",
SDKUtils.genOutRefundNo(), 1, 1, "112102020", nonceStr);RefundResponse response = wxPayVIPClient.execute(request);
Assert.assertNotNull(response);
LOG.info(JSON.toJSONString(response));// TODO 开发人员根据 response中的属性值处理业务逻辑, 此处可完美嵌入业务层(小型系统)或服务层(大型系统)
支付异步通知解析
文档详见: https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_7
String notifyTxt = "<xml>\n" +
"<appid><!]></appid>\n" +
"<attach><!]></attach>\n" +
"<bank_type><!]></bank_type>\n" +
"<fee_type><!]></fee_type>\n" +
"<is_subscribe><!]></is_subscribe>\n" +
"<mch_id><!]></mch_id>\n" +
"<nonce_str><!]></nonce_str>\n" +
"<openid><!]></openid>\n" +
"<out_trade_no><!]></out_trade_no>\n" +
"<result_code><!]></result_code>\n" +
"<return_code><!]></return_code>\n" +
"<sign><!]></sign>\n" +
"<sub_mch_id><!]></sub_mch_id>\n" +
"<time_end><!]></time_end>\n" +
"<total_fee>1</total_fee>\n" +
"<trade_type><!]></trade_type>\n" +
"<transaction_id><!]></transaction_id>\n" +
"</xml>";
PayNotifyResponse response = wxPayClient.parseNotify(notifyTxt, PayNotifyResponse.class);
Assert.assertNotNull(response);
LOG.info(JSON.toJSONString(response));
// TODO 开发人员根据 response中的属性值处理业务逻辑, 此处可完美嵌入业务层(小型系统)或服务层(大型系统)
扩展
该SDK设计了一个服务工厂, 该工厂中包含HTTP执行器/返回数据解析方式(json/xml)/入参数据格式(json/xml)构造等,
开发人员需要增加服务仅需要根据服务协议文档编写上下行协议, 并在协议中指明API接口和返回数据类型, 再将上行协议放入工厂中执行即可;
可参考已完成的服务协议进行扩展编写.
总算编好了!累写得有些乱大家多包涵!
编辑的有些乱请大家多包涵 小白 凑热闹 凑个热闹走了 小白来凑个热闹 当路过...还是看不明白 感谢分享 膜拜大神\_( ω )_/
页:
[1]
2