위 챗 결제 H5 호출 결제 상세 설명(자바 버 전)

최근 프로젝트 는 위 챗 결제 가 필요 합 니 다.그리고 위 챗 공중 번호 결 제 를 보 았 습 니 다.어렵 지 않 지만 세부 사항 은 주의해 야 합 니 다.반나절 동안 demo 를 썼 고 결제 절 차 를 완 벽 히 테스트 했 습 니 다.다음은 위 챗 공중 번호 결제 의 경 과 를 공유 하 겠 습 니 다.
1.공중 번호 위 챗 결제 설정 
우리 가 위 챗 공중 번호 지불 주소 와 테스트 화이트 리스트 를 설정 해 야 합 니 다.

예 를 들 어 JS 페이지 의 주 소 는?http://www.xxx.com/shop/pay/
www.xxx.com/shop/pay/를 설정 합 니 다.
개발 절차
위 챗 공식 번 호 를 빌려 api(주소 http://pay.weixin.qq.com/wiki/doc/api/index.PHP?chapter=7_4)를 지불 합 니 다.우 리 는 빨간색 으로 표시 해 야 합 니 다.다음 과 같다.

3.위 챗 서버 에 주문 하기
단일 인 터 페 이 스 를 호출 하면 위 챗 결제 의 prepay 를 얻 을 수 있 습 니 다.id( http://pay.weixin.qq.com/wiki/doc/api/index.php?chapter=9_1 )。
이 인 터 페 이 스 를 호출 하기 전에 H5 결제 에 필요 한 openid 필드 가 몇 개 있 습 니 다.
3.1 openid 가 져 오기
웹 페이지 를 통 해 권한 수여 형식(http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html)
위 챗 에서 다음 링크 보 내기
https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx520c15f417810387&redirect_uri=뛰 어 넘 을 주문 의 url&responsetype=code&scope=snsapi_base&state=123#wechat_redirect
3.2 주문 을 내 려 prepay 획득id
코드 는 다음 과 같 습 니 다.실제로 post 를 통 해 xml 파일 을 보 내 고 위 챗 서버 에서 보 내 온 prepay 를 가 져 옵 니 다.id。

import java.io.ByteArrayInputStream; 
import javaioIOException; 
import javaioInputStream; 
import javaioUnsupportedEncodingException; 
import javautilDate; 
import javautilHashMap; 
import javautilIterator; 
import javautilMap; 
import javautilMapEntry; 
import javautilRandom; 
 
import javaxservlethttpHttpServletRequest; 
import javaxservlethttpHttpServletResponse; 
 
import orgapachecommonscodecdigestDigestUtils; 
import orgspringframeworkstereotypeController; 
import orgspringframeworkwebbindannotationRequestMapping; 
import orgxmlpullvXmlPullParser; 
import orgxmlpullvXmlPullParserException; 
import orgxmlpullvXmlPullParserFactory; 
 
import comfasterxmljacksondatabindJsonNode; 
import comgsonoauthOauth; 
import comgsonoauthPay; 
import comgsonutilHttpKit; 
import comsyutilDatetimeUtil; 
import comsyutilJsonUtil; 
 
@Controller 
@RequestMapping("/pay") 
public class WXPayController { 
 
  @RequestMapping(value = "wxprepaydo") 
  public void jspay(HttpServletRequest request, HttpServletResponse response, String callback) throws Exception { 
    //   openid 
    String openId = SessionUtilgetAtt(request, "openId"); 
    if (openId == null) { 
      openId = getUserOpenId(request); 
    } 
 
    String appid = "wx16691fcb0523c1a4"; 
    String paternerKey = "ININGFENG1234567fdfwfdfd1ss234567"; 
     
    String out_trade_no = getTradeNo(); 
    Map<String, String> paraMap = new HashMap<String, String>(); 
    paraMapput("appid", appid); 
    paraMapput("attach", "  "); 
    paraMapput("body", "      "); 
    paraMapput("mch_id", "10283271"); 
    paraMapput("nonce_str", create_nonce_str()); 
    paraMapput("openid", openId); 
    paraMapput("out_trade_no", out_trade_no); 
    paraMapput("spbill_create_ip", getAddrIp(request)); 
    paraMapput("total_fee", "1"); 
    paraMapput("trade_type", "JSAPI"); 
    paraMapput("notify_url", "http://wwwxxxco/bank/page/wxnotify"); 
    String sign = getSign(paraMap, paternerKey); 
    paraMapput("sign", sign); 
 
    //      https://apimchweixinqqcom/pay/unifiedorder 
    String url = "https://apimchweixinqqcom/pay/unifiedorder"; 
 
    String xml = ArrayToXml(paraMap); 
 
    String xmlStr = HttpKitpost(url, xml); 
 
    //     id 
    String prepay_id = ""; 
 
    if (xmlStrindexOf("SUCCESS") != -1) { 
      Map<String, String> map = doXMLParse(xmlStr); 
      prepay_id = (String) mapget("prepay_id"); 
    } 
 
    Map<String, String> payMap = new HashMap<String, String>(); 
    payMapput("appId", appid); 
    payMapput("timeStamp", create_timestamp()); 
    payMapput("nonceStr", create_nonce_str()); 
    payMapput("signType", "MD5"); 
    payMapput("package", "prepay_id=" + prepay_id); 
    String paySign = getSign(payMap, paternerKey); 
     
    payMapput("pg", prepay_id); 
    payMapput("paySign", paySign); 
     
     
    WebUtilresponse(response, WebUtilpackJsonp(callback, JsonUtilwarpJsonNodeResponse(JsonUtilobjectToJsonNode(payMap))toString())); 
  } 
 
  /** 
   * map  xml 
   * 
   * @param arr 
   * @return 
   */ 
  public String ArrayToXml(Map<String, String> arr) { 
    String xml = "<xml>"; 
 
    Iterator<Entry<String, String>> iter = arrentrySet()iterator(); 
    while (iterhasNext()) { 
      Entry<String, String> entry = iternext(); 
      String key = entrygetKey(); 
      String val = entrygetValue(); 
      xml += "<" + key + ">" + val + "</" + key + ">"; 
    } 
 
    xml += "</xml>"; 
    return xml; 
  } 
 
  //   openId 
  private String getUserOpenId(HttpServletRequest request) throws Exception { 
    String code = requestgetParameter("code"); 
    if (code == null) { 
      String openId = requestgetParameter("openId"); 
      return openId; 
    } 
    Oauth o = new Oauth(); 
    String token = ogetToken(code); 
    JsonNode node = JsonUtilStringToJsonNode(token); 
    String openId = nodeget("openid")asText(); 
    return openId; 
  } 
 
  private String create_nonce_str() { 
      String chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; 
      String res = ""; 
      for (int i = 0; i < 16; i++) { 
        Random rd = new Random(); 
        res += charscharAt(rdnextInt(charslength() - 1)); 
      } 
      return res; 
  } 
   
  private String getAddrIp(HttpServletRequest request){ 
    return requestgetRemoteAddr(); 
  } 
 
  private String create_timestamp() { 
    return LongtoString(SystemcurrentTimeMillis() / 1000); 
  } 
   
  private String getTradeNo(){ 
    String timestamp = DatetimeUtilformatDate(new Date(), DatetimeUtilDATETIME_PATTERN); 
    return "HZNO" + timestamp; 
  } 
   
  private String getSign(Map<String, String> params, String paternerKey ) 
      throws UnsupportedEncodingException { 
    String string1 = PaycreateSign(params, false); 
    String stringSignTemp = string1 + "&key=" + paternerKey; 
    String signValue = DigestUtilsmd5Hex(stringSignTemp)toUpperCase(); 
    return signValue; 
  } 
 
  private Map<String, String> doXMLParse(String xml) 
      throws XmlPullParserException, IOException { 
 
    InputStream inputStream = new ByteArrayInputStream(xmlgetBytes()); 
 
    Map<String, String> map = null; 
 
    XmlPullParser pullParser = XmlPullParserFactorynewInstance() 
        newPullParser(); 
 
    pullParsersetInput(inputStream, "UTF-8"); //  xml      xml   
 
    int eventType = pullParsergetEventType(); 
 
    while (eventType != XmlPullParserEND_DOCUMENT) { 
      switch (eventType) { 
      case XmlPullParserSTART_DOCUMENT: 
        map = new HashMap<String, String>(); 
        break; 
 
      case XmlPullParserSTART_TAG: 
        String key = pullParsergetName(); 
        if (keyequals("xml")) 
          break; 
 
        String value = pullParsernextText(); 
        mapput(key, value); 
 
        break; 
 
      case XmlPullParserEND_TAG: 
        break; 
 
      } 
 
      eventType = pullParsernext(); 
 
    } 
 
    return map; 
  } 
 
} 
H5 지불
H5 결 제 는 간단 합 니 다.위 챗 에 브 라 우 저의 js 방법 만 호출 하면 됩 니 다(http://pay.weixin.qq.com/wiki/doc/api/index.php?chapter=7_7)

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 
<%@ taglib prefix="spring" uri="http://wwwspringframeworkorg/tags" %> 
<% 
  String path = requestgetContextPath(); 
  String basePath = requestgetScheme() + "://" + requestgetServerName() + ":" + requestgetServerPort() + path + "/"; 
%> 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 01 Transitional//EN" "http://wwwworg/TR/html4/loosedtd"> 
<html> 
<head> 
<meta charset="utf-8" /> 
<meta name="viewport" content="width=device-width, initial-scale=0, maximum-scale=0, user-scalable=0" /> 
<meta name="apple-mobile-web-app-capable" content="yes" /> 
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> 
<meta name="format-detection" content="telephone=no" /> 
<title>    </title> 
<link href="/css/csscss?v=0" rel="stylesheet" type="text/css"> 
</head> 
 
<body> 
  <div class="index_box"> 
    <div class="apply_name">  js    </div> 
     
     
    <div class="branch_con"> 
      <ul> 
        <li><span class="name">      </span></li> 
      </ul> 
      <p class="cz_btn"><a href="javascript:pay();" class="btn_1">    </a></p> 
    </div> 
  </div> 
 
  <script type="text/javascript" src="/js/zeptominjs"></script> 
  <script type="text/javascript" src="/js/commonjs"></script> 
  <script type="text/javascript"> 
    
  var appId = urlparameter("appId"); 
  var timeStamp = urlparameter("timeStamp"); 
  var nonceStr = urlparameter("nonceStr"); 
  var pg = urlparameter("pg"); 
  var signType = urlparameter("signType"); 
  var paySign = urlparameter("paySign"); 
   
   
   function onBridgeReady(){ 
      
      WeixinJSBridgeinvoke( 
        'getBrandWCPayRequest', { 
          "appId" : appId,   //     ,         
          "timeStamp": timeStamp,     //   , 1970          
          "nonceStr" : nonceStr, //       
          "package" : "prepay_id=" + pg,    
          "signType" : signType,     //      :    
          "paySign" : paySign  //      
        }, 
         
        function(res){    
          if(reserr_msg == "get_brand_wcpay_request:ok" ) { 
             
            alert("    "); 
          }   //             ,        :reserr_msg             ok,          。  
        } 
      );  
    } 
    
    
    function pay(){ 
       
      if (typeof WeixinJSBridge == "undefined"){ 
        if( documentaddEventListener ){ 
          documentaddEventListener('WeixinJSBridgeReady', onBridgeReady, false); 
        }else if (documentattachEvent){ 
          documentattachEvent('WeixinJSBridgeReady', onBridgeReady);  
          documentattachEvent('onWeixinJSBridgeReady', onBridgeReady); 
        } 
      }else{ 
        onBridgeReady(); 
      }  
       
    } 
  </script> 
</body> 
</html> 

효 과 는 다음 과 같다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기