微信公众号支付怎么实现统一下单接口-mile米乐体育
开发技术
2021年03月13日 15:37
0
这篇文章将为大家详细讲解有关微信公众号支付怎么实现统一下单接口,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
主要是调用微信公众支付的统一下单api
api地址:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_1
看文档,主要流程就是把20个左右的参数封装为xml格式发送到微信给的接口地址,然后就可以获取到返回的内容了,如果成功里面就有支付所需要的预支付id
请求参数就不解释了。
其中,随机字符串:我用的是uuid去中划线
publicstaticstringcreate_nonce_str(){ returnuuid.randomuuid().tostring().replace("-",""); }
商户订单号:每个订单号只能使用一次,所以用的是系统的订单号加的时间戳。
总金额:不能为
通知地址:微信支付成功或失败回调给系统的地址
签名:
importjava.io.serializable; publicclasspayinfoimplementsserializable{ privatestaticfinallongserialversionuid=l; privatestringappid; privatestringmch_id; privatestringdevice_info; privatestringnonce_str; privatestringsign; privatestringbody; privatestringattach; privatestringout_trade_no; privateinttotal_fee; privatestringspbill_create_ip; privatestringnotify_url; privatestringtrade_type; privatestringopenid; //下面是get,set方法 } /** *创建统一下单的xml的java对象 *@parambizorder系统中的业务单号 *@paramip用户的ip地址 *@paramopenid用户的openid *@return */ publicpayinfocreatepayinfo(bizorderbizorder,stringip,stringopenid){ payinfopayinfo=newpayinfo(); payinfo.setappid(constants.appid); payinfo.setdevice_info("web"); payinfo.setmch_id(constants.mch_id); payinfo.setnonce_str(commonutil.create_nonce_str().replace("-","")); payinfo.setbody("这里是某某白米饭的body"); payinfo.setattach(bizorder.getid()); payinfo.setout_trade_no(bizorder.getordercode().concat("a").concat(dateformatutils.format(newdate(),"mmddhhmmss"))); payinfo.settotal_fee((int)bizorder.getfeeamount()); payinfo.setspbill_create_ip(ip); payinfo.setnotify_; payinfo.settrade_type("jsapi"); payinfo.setopenid(openid); returnpayinfo; }
获取签名:
/** *获取签名 *@parampayinfo *@return *@throwsexception */ publicstringgetsign(payinfopayinfo)throwsexception{ stringsigntemp="appid=" payinfo.getappid() "&attach=" payinfo.getattach() "&body=" payinfo.getbody() "&device_info=" payinfo.getdevice_info() "&mch_id=" payinfo.getmch_id() "&nonce_str=" payinfo.getnonce_str() "¬ify_url=" payinfo.getnotify_ "&openid=" payinfo.getopenid() "&out_trade_no=" payinfo.getout_trade_no() "&spbill_create_ip=" payinfo.getspbill_create_ip() "&total_fee=" payinfo.gettotal_fee() "&trade_type=" payinfo.gettrade_type() "&key=" constants.key;//这个key注意 messagedigestmd=messagedigest.getinstance("md"); md.reset(); md.update(signtemp.getbytes("utf-")); stringsign=commonutil.bytetostr(md.digest()).touppercase(); returnsign; }
注意:上面的constants.key取值在商户号api安全的api密钥中。
一些工具方法:获取ip地址,将字节数组转换为十六进制字符串,将字节转换为十六进制字符串
/** *将字节数组转换为十六进制字符串 * *@parambytearray *@return */ publicstaticstringbytetostr(byte[]bytearray){ stringstrdigest=""; for(inti=;i>>)&xf]; temparr[]=digit[bytes&xf]; strings=newstring(temparr); returns; } /** *获取ip地址 *@paramrequest *@return */ publicstaticstringgetipaddr(httpservletrequestrequest){ inetaddressaddr=null; try{ addr=inetaddress.getlocalhost(); }catch(unknownhostexceptione){ returnrequest.getremoteaddr(); } byte[]ipaddr=addr.getaddress(); stringipaddrstr=""; for(inti=;i ){ ipaddrstr ="."; } ipaddrstr =ipaddr[i]&xff; } returnipaddrstr; }
这样就获取了签名,把签名与payinfo中的其他数据转成xml格式,当做参数传递给统一下单地址。
payinfopi=pu.createpayinfo(bo,"...",""); stringsign=pu.getsign(pi); pi.setsign(sign);
对象转xml
/** *扩展xstream使其支持cdata */ privatestaticxstreamxstream=newxstream(newxppdriver(){ publichierarchicalstreamwritercreatewriter(writerout){ returnnewprettyprintwriter(out){ //增加cdata标记 booleancdata=true; @suppresswarnings("rawtypes") publicvoidstartnode(stringname,classclazz){ super.startnode(name,clazz); } protectedvoidwritetext(quickwriterwriter,stringtext){ if(cdata){ writer.write(""); }else{ writer.write(text); } } }; } }); publicstaticstringpayinfotoxml(payinfopi){ xstream.alias("xml",pi.getclass()); returnxstream.toxml(pi); }
xml转map
@suppresswarnings("unchecked") publicstaticmapparsexml(stringxml)throwsexception{ map map=newhashmap (); documentdocument=documenthelper.parsetext(xml); elementroot=document.getrootelement(); list elementlist=root.elements(); for(elemente:elementlist) map.put(e.getname(),e.gettext()); returnmap; }
下面就是调用统一下单的url了
log.info(messageutil.payinfotoxml(pi).replace("__","_")); mapmap=commonutil.httpsrequesttoxml("https://api.mch.weixin.qq.com/pay/unifiedorder","post",messageutil.payinfotoxml(pi).replace("__","_").replace("","")); log.info(map); publicstaticmap httpsrequesttoxml(stringrequesturl,stringrequestmethod,stringoutputstr){ map result=newhashmap<>(); try{ stringbufferbuffer=httpsrequest(requesturl,requestmethod,outputstr); result=messageutil.parsexml(buffer.tostring()); }catch(connectexceptionce){ log.error("连接超时:" ce.getmessage()); }catch(exceptione){ log.error("https请求异常:" ece.getmessage()); } returnresult; }
httpsrequest()这个方法在第一篇中
上面获取到的map如果成功的话,里面就会有
stringreturn_code=map.get("return_code"); if(stringutils.isnotblank(return_code)&&return_code.equals("success")){ stringreturn_msg=map.get("return_msg"); if(stringutils.isnotblank(return_msg)&&!return_msg.equals("ok")){ return"统一下单错误!"; } }else{ return"统一下单错误!"; } stringprepay_id=map.get("prepay_id");
这个prepay_id就是预支付的id。后面支付需要它。
关于“微信公众号支付怎么实现统一下单接口”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
展开全文