码迷,mamicode.com
首页 > 其他好文 > 详细

关于小程序支付功能的爬坑

时间:2017-09-21 21:15:08      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:版本   pen   array   body   org   apache   html   http   end   

代码大部分用的http://www.wxapp-union.com/article-2516-1.html提供的。

但是,此代码在使用org.apache.httpcomponents(4.3.5)里的HttpPost实例化时出错。

解决:maven中引入的httpclient和httpcore版本一致,如

<dependency>
     <groupId>org.apache.httpcomponents</groupId>
     <artifactId>httpclient</artifactId>
     <version>4.4</version>
</dependency>
<dependency>
     <groupId>org.apache.httpcomponents</groupId>
     <artifactId>httpcore</artifactId>
     <version>4.4</version>
</dependency>

还有,订单order中的body不能为中文,wtf

解决:将MD5Encode方法中的resultString = byteArrayToHexString(md.digest(resultString.getBytes()))改为

resultString = byteArrayToHexString(md.digest(resultString.getBytes("utf-8")))

关于小程序支付功能的爬坑

标签:版本   pen   array   body   org   apache   html   http   end   

原文地址:http://www.cnblogs.com/daidao/p/7570154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!