HBuilder基礎上調用支付寶App支付、微信支付App支付(PHP)

1.微信支付注意事項:

{"code":-100,"message":"[payment微信:-1]General errors"}

以上錯誤碼-100是5+SDK的錯誤碼,而-1爲微信支付SDK的錯誤碼,對應的微信的錯誤類型爲:簽名錯誤、未註冊APPID、項目設置APPID不正確、註冊的APPID與設置的不匹配、其他異常等。
根據錯誤提示我們逐步排除。

登記的包名或簽名錯誤

覈對微信後臺登記的應用包名以及應用簽名是否有誤,登記的簽名需要和簽名工具獲取到的一致,更新這些信息並非馬上生效,可以等一段時間再測試。另外需要確保應用已經通過審覈,並獲得支付權限。

APPID錯誤

覈對項目中manifest.json文件中填寫的微信支付的AppID是否和平臺上的一致。

付款信息計算錯誤

覈對後端代碼,查驗統一下單調起支付接口的邏輯是否有誤,並確保兩次簽名生成算法一致。

H5+接口調用錯誤

接口plus.payment.request調用時傳入的支付信息是字符串類型,如:官方返回數據地址是:

http://demo.dcloud.net.cn/payment/wxpayv3.HBuilder/?total=1  返回數據如下是個json_encode的數組

{"appid":"wx0411fa6a39d61297","noncestr":"5v5efv7JKmDGv91X","package":"Sign=WXPay","partnerid":"1230636401","prepayid":"wx28170035285029c12927cdc40885888318","timestamp":1545987635,"sign":"56A6442588EB590F57EF48F2EC104DE9"}

微信支付 測試一定要打包,並且簽名才能調起來的!!!!!!!!!!!

前端代碼

	var channel=null;aliChannel=null;wxChannel =null;
	// 第一步. 獲取支付通道
	function plusReady(){
		plus.payment.getChannels(function(channels){
				channel=channels[0];
			},function(e){
				alert("獲取支付通道失敗:"+e.message);
			});
		plus.payment.getChannels(function(channels){
			for(var i=0;i<channels.length;i++){
				if(channels[i].id == 'alipay'){
					aliChannel=channels[i];
				}else if(channels[i].id == 'wxpay'){
					wxChannel=channels[i];
				}
			}
		},function(e){
			alert("獲取支付通道失敗:"+e.message);
		});
	}
	document.addEventListener('plusready',plusReady,false);
	var ALIPAYSERVER='https://daichao.p11v.cn/pay/Order/order_alipayapp.html?id=';//支付寶
	var WXPAYSERVER ='https://daichao.p11v.cn/pay/Order/order_wxapppay.html?id=';
	// 2. 發起支付請求->從服務器請求支付訂單
	function pay(payway){
		var id = $('#id').val();
		var PAYSERVER=''; 
			if(payway =='alipay'){
				PAYSERVER=ALIPAYSERVER+id;
				channel = aliChannel;
			}else if(payway =='wxpay'){
				PAYSERVER=WXPAYSERVER+id;
				channel = wxChannel;
			}else{
				plus.nativeUI.alert("不支持此支付通道!",null,"融易放");
				return;
			}
			$.ajax({
			  url:PAYSERVER,
			  type:'get',
			  dataType:'json',
			  data:'',
			}).done(function(msg){
				if(msg.status == 1){
					plus.payment.request(channel,msg.content,function(result){
						plus.nativeUI.alert("支付成功!",function(){
							location.href = 'user.html';
						});
					},function(error){
						plus.nativeUI.alert("支付失敗");
					});
				}else{
					plus.nativeUI.alert(msg.content);
				}
			});
	}

後臺微信App支付類如下

<?php
namespace weixin;
class wechatAppPay 
{   
	//接口API URL前綴
	const API_URL_PREFIX = 'https://api.mch.weixin.qq.com';
	//下單地址URL
	const UNIFIEDORDER_URL = "/pay/unifiedorder";
	//查詢訂單URL
	const ORDERQUERY_URL = "/pay/orderquery";
	//關閉訂單URL
	const CLOSEORDER_URL = "/pay/closeorder";
	//公衆賬號ID
	private $wxappid;
	//商戶號
	private $mch_id;
	//隨機字符串
	private $nonce_str;
	//簽名
	private $sign;
	//商品描述
	private $body;
	//商戶訂單號
	private $out_trade_no;
	//支付總金額
	private $total_fee;
	//終端IP
	private $spbill_create_ip;
	//支付結果回調通知地址
	private $notify_url;
	//交易類型
	private $trade_type;
	//支付密鑰
	private $key;
	//證書路徑
	private $SSLCERT_PATH;
	private $SSLKEY_PATH;
	//所有參數
	private $params = array();
	

	
	public function __construct($notify_url,$wxappid ='wx632xxxxx' , $mch_id='1521xxx', $key='xxxxxxxx')
	{
		$this->appid = $wxappid;
		$this->mch_id = $mch_id;
		$this->notify_url = $notify_url;
		$this->key = $key;
	}
	/**
	 * 下單方法
	 * @param   $params 下單參數
	 */
	public function unifiedOrder( $params ){
		$this->body = $params['body'];
		$this->out_trade_no = $params['out_trade_no'];
		$this->total_fee = $params['total_fee'];
		$this->trade_type = $params['trade_type'];
		$this->nonce_str = $this->genRandomString();
		$this->spbill_create_ip = $_SERVER['REMOTE_ADDR'];
		$this->params['appid'] = $this->appid;
		$this->params['mch_id'] = $this->mch_id;
		$this->params['nonce_str'] = $this->nonce_str;
		$this->params['body'] = $this->body;
		$this->params['out_trade_no'] = $this->out_trade_no;
		$this->params['total_fee'] = $this->total_fee;
		$this->params['spbill_create_ip'] = $this->spbill_create_ip;
		$this->params['notify_url'] = $this->notify_url;
		$this->params['trade_type'] = $this->trade_type;

		
		//獲取簽名數據
		$this->sign = $this->MakeSign( $this->params );
		$this->params['sign'] = $this->sign;
		$xml = $this->data_to_xml($this->params);
		$response = $this->postXmlCurl($xml, self::API_URL_PREFIX.self::UNIFIEDORDER_URL);
		if( !$response ){
			return false;
		}
		$result = $this->xml_to_data( $response );
		if( !empty($result['result_code']) && !empty($result['err_code']) ){
			$result['err_msg'] = $this->error_code( $result['err_code'] );
		}
		return $result;
	}
	/**
	 * 查詢訂單信息
	 * @param $out_trade_no     訂單號
	 * @return array
	 */
	public function orderQuery( $out_trade_no ){
		$this->params['appid'] = $this->appid;
		$this->params['mch_id'] = $this->mch_id;
		$this->params['nonce_str'] = $this->genRandomString();
		$this->params['out_trade_no'] = $out_trade_no;
		//獲取簽名數據
		$this->sign = $this->MakeSign( $this->params );
		$this->params['sign'] = $this->sign;
		$xml = $this->data_to_xml($this->params);
		$response = $this->postXmlCurl($xml, self::API_URL_PREFIX.self::ORDERQUERY_URL);
		if( !$response ){
			return false;
		}
		$result = $this->xml_to_data( $response );
		if( !empty($result['result_code']) && !empty($result['err_code']) ){
			$result['err_msg'] = $this->error_code( $result['err_code'] );
		}
		return $result;
	}
	/**
	 * 關閉訂單
	 * @param $out_trade_no     訂單號
	 * @return array
	 */
	public function closeOrder( $out_trade_no ){
		$this->params['appid'] = $this->appid;
		$this->params['mch_id'] = $this->mch_id;
		$this->params['nonce_str'] = $this->genRandomString();
		$this->params['out_trade_no'] = $out_trade_no;
		//獲取簽名數據
		$this->sign = $this->MakeSign( $this->params );
		$this->params['sign'] = $this->sign;
		$xml = $this->data_to_xml($this->params);
		$response = $this->postXmlCurl($xml, self::API_URL_PREFIX.self::CLOSEORDER_URL);
		if( !$response ){
			return false;
		}
		$result = $this->xml_to_data( $response );
		return $result;
	}
	/**
	 * 
	 * 獲取支付結果通知數據
	 * return array
	 */
	public function getNotifyData(){
		//獲取通知的數據
		$xml = $GLOBALS['HTTP_RAW_POST_DATA'];
		$data = array();
		if( empty($xml) ){
			return false;
		}
		$data = $this->xml_to_data( $xml );
		if( !empty($data['return_code']) ){
			if( $data['return_code'] == 'FAIL' ){
				return false;
			}
		}
		return $data;
	}
	/**
	 * 接收通知成功後應答輸出XML數據
	 * @param string $xml
	 */
	public function replyNotify(){
		$data['return_code'] = 'SUCCESS';
		$data['return_msg'] = 'OK';
		$xml = $this->data_to_xml( $data );
		echo $xml;
		die();
	}
	 /**
	  * 生成APP端支付參數
	  * @param  $prepayid   預支付id
	  */
	 public function getAppPayParams( $prepayid ){
		 $data['appid'] = $this->appid;
		 $data['noncestr'] = $this->genRandomString();
		 $data['package'] = 'Sign=WXPay';
		 $data['partnerid'] = $this->mch_id;
		 $data['prepayid'] = $prepayid;
		 $data['timestamp'] = time();
		 $data['sign'] = $this->MakeSign( $data ); 
		 return $data;
	 }
	/**
	 * 生成簽名
	 *  @return 簽名
	 */
	public function MakeSign( $params ){
		//簽名步驟一:按字典序排序數組參數
		ksort($params);
		$string = $this->ToUrlParams($params);
		//簽名步驟二:在string後加入KEY
		$string = $string . "&key=".$this->key;
		//簽名步驟三:MD5加密
		$string = md5($string);
		//簽名步驟四:所有字符轉爲大寫
		$result = strtoupper($string);
		return $result;
	}

	/**
	 * 將參數拼接爲url: key=value&key=value
	 * @param   $params
	 * @return  string
	 */
	public function ToUrlParams( $params ){
		$string = '';
		if( !empty($params) ){
			$array = array();
			foreach( $params as $key => $value ){
				$array[] = $key.'='.$value;
			}
			$string = implode("&",$array);
		}
		return $string;
	}
	/**
	 * 輸出xml字符
	 * @param   $params     參數名稱
	 * return   string      返回組裝的xml
	 **/
	public function data_to_xml( $params ){
		if(!is_array($params)|| count($params) <= 0)
		{
			return false;
		}
		$xml = "<xml>";
		foreach ($params as $key=>$val)
		{
			if (is_numeric($val)){
				$xml.="<".$key.">".$val."</".$key.">";
			}else{
				$xml.="<".$key."><![CDATA[".$val."]]></".$key.">";
			}
		}
		$xml.="</xml>";
		return $xml; 
	}
	/**
	 * 將xml轉爲array
	 * @param string $xml
	 * return array
	 */
	public function xml_to_data($xml){  
		if(!$xml){
			return false;
		}
		//將XML轉爲array
		//禁止引用外部xml實體
		libxml_disable_entity_loader(true);
		$data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);        
		return $data;
	}
	/**
	 * 獲取毫秒級別的時間戳
	 */
	private static function getMillisecond(){
		//獲取毫秒的時間戳
		$time = explode ( " ", microtime () );
		$time = $time[1] . ($time[0] * 1000);
		$time2 = explode( ".", $time );
		$time = $time2[0];
		return $time;
	}
	/**
	 * 產生一個指定長度的隨機字符串,並返回給用戶 
	 * @param type $len 產生字符串的長度
	 * @return string 隨機字符串
	 */
	private function genRandomString($len = 32) {
		$chars = array(
			"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",
			"l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v",
			"w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G",
			"H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R",
			"S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2",
			"3", "4", "5", "6", "7", "8", "9"
		);
		$charsLen = count($chars) - 1;
		// 將數組打亂 
		shuffle($chars);
		$output = "";
		for ($i = 0; $i < $len; $i++) {
			$output .= $chars[mt_rand(0, $charsLen)];
		}
		return $output;
	}
	/**
	 * 以post方式提交xml到對應的接口url
	 * 
	 * @param string $xml  需要post的xml數據
	 * @param string $url  url
	 * @param bool $useCert 是否需要證書,默認不需要
	 * @param int $second   url執行超時時間,默認30s
	 * @throws WxPayException
	 */
	private function postXmlCurl($xml, $url, $useCert = false, $second = 30){       
		$ch = curl_init();
		//設置超時
		curl_setopt($ch, CURLOPT_TIMEOUT, $second);
		curl_setopt($ch,CURLOPT_URL, $url);
		curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
		curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,2);
		//設置header
		curl_setopt($ch, CURLOPT_HEADER, FALSE);
		//要求結果爲字符串且輸出到屏幕上
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
		if($useCert == true){
			//設置證書
			//使用證書:cert 與 key 分別屬於兩個.pem文件
			curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
			//curl_setopt($ch,CURLOPT_SSLCERT, WxPayConfig::SSLCERT_PATH);
			curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
			//curl_setopt($ch,CURLOPT_SSLKEY, WxPayConfig::SSLKEY_PATH);
		}
		//post提交方式
		curl_setopt($ch, CURLOPT_POST, TRUE);
		curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
		//運行curl
		$data = curl_exec($ch);
		//返回結果
		if($data){
			curl_close($ch);
			return $data;
		} else { 
			$error = curl_errno($ch);
			curl_close($ch);
			return false;
		}
	}
	/**
	  * 錯誤代碼
	  * @param  $code       服務器輸出的錯誤代碼
	  * return string
	  */
	 public function error_code( $code ){
		 $errList = array(
			'NOAUTH'                =>  '商戶未開通此接口權限',
			'NOTENOUGH'             =>  '用戶帳號餘額不足',
			'ORDERNOTEXIST'         =>  '訂單號不存在',
			'ORDERPAID'             =>  '商戶訂單已支付,無需重複操作',
			'ORDERCLOSED'           =>  '當前訂單已關閉,無法支付',
			'SYSTEMERROR'           =>  '系統錯誤!系統超時',
			'APPID_NOT_EXIST'       =>  '參數中缺少APPID',
			'MCHID_NOT_EXIST'       =>  '參數中缺少MCHID',
			'APPID_MCHID_NOT_MATCH' =>  'appid和mch_id不匹配',
			'LACK_PARAMS'           =>  '缺少必要的請求參數',
			'OUT_TRADE_NO_USED'     =>  '同一筆交易不能多次提交',
			'SIGNERROR'             =>  '參數簽名結果不正確',
			'XML_FORMAT_ERROR'      =>  'XML格式錯誤',
			'REQUIRE_POST_METHOD'   =>  '未使用post傳遞參數 ',
			'POST_DATA_EMPTY'       =>  'post數據不能爲空',
			'NOT_UTF8'              =>  '未使用指定編碼格式',
		 ); 
		 if( array_key_exists( $code , $errList ) ){
			return $errList[$code];
		 }
	 }
} 

調用代碼如下:

		//②、統一下單
		$order_id  = strval(date("YmdHis").mt_rand(111111111,999999999)); //訂單編號
		$total_fee = bcmul($money,'100'); //支付金額轉換成分
		$data['order_id'] = $order_id; //充值訂單號
		$data['user_id'] = cookie('uid');
		$data['agent_id'] = $userinfo['agent_id'];
		$data['money'] = floatval(bcdiv((string)$total_fee,'100',2)) ;//轉換成浮點數值
		$data['payway'] = 1;//2支付寶支付  1微信支付
		$data['status'] = 2; //2失敗  1成功
		$data['add_time'] = time();
		$data['level_id'] = $level['id']; //購買會員級別
		$data['add_ip'] = $this->request->ip();
		$insertId = db('user_order')->insertGetId($data);
		if($insertId>0){
			$notify_url = 'https://'.$_SERVER['HTTP_HOST'].'/pay/Wxpayreturn/wxapp_notify_morder.html';
			$wxApp = new \weixin\wechatAppPay($notify_url);
			$data = [
				'body'=>'購買會員',
				'out_trade_no'=>$order_id,
				'total_fee'=>$total_fee,
				'trade_type'=>'APP'
			];
			$res = $wxApp->unifiedOrder($data);
			if($res['return_code'] == 'SUCCESS' && $res['return_msg'] == 'OK' && $res['result_code'] == 'SUCCESS'){
				$msg = $wxApp->getAppPayParams($res['prepay_id']);
				$result = ['status'=>1,'content'=>json_encode($msg)];
			}
		}else{
			$result['content'] = '數據異常!';
		}
		_end:
		exit(json_encode($result));

支付寶的

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章