您好,登錄后才能下訂單哦!
本篇內容主要講解“php怎么實現支付寶APP支付功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“php怎么實現支付寶APP支付功能”吧!
本文實例為大家分享了php支付寶APP支付的具體代碼,供大家參考,具體內容如下
支付寶網頁支付
1.支付寶開放平臺添加應用,獲得appid,并簽約。
2.在支付寶開放品臺設置如下:
3.配置支付寶的應用公鑰。(根據支付寶的文檔)
4.在開放平臺下載官方sdk demo。
5.代碼:
//支付寶 include_once VENDOR_PATH . 'Alipay/aop/AopClient.php'; include_once VENDOR_PATH . 'Alipay/aop/request/AlipayTradeAppPayRequest.php'; $notify_url='https://www.www.com/app/pay/AlipayStep3Notify'; $config = array( 'appid' =>$this->appid,// 'rsaPrivateKey' =>$this->rsaPrivateKey,//開發者私鑰私鑰 'alipayrsaPublicKey'=>$this->alipayrsaPublicKey,//支付寶公鑰 'charset'=>strtolower('utf-8'),//編碼 'notify_url' =>$notify_url,//回調地址(支付寶支付成功后回調修改訂單狀態的地址) 'payment_type' =>1,//(固定值) 'seller_id' =>'',//收款商家賬號 'charset' => 'utf-8',//編碼 'sign_type' => 'RSA2',//簽名方式 'timestamp' =>date("Y-m-d H:i:s"), 'version' =>"1.0",//固定值 'url' => 'https://openapi.alipay.com/gateway.do',//固定值 'method' => 'alipay.trade.app.pay',//固定值 ); $aop = new \AopClient(); $aop->gatewayUrl = "https://openapi.alipay.com/gateway.do"; $aop->appId = $config['appid']; $aop->rsaPrivateKey = $config['rsaPrivateKey']; $aop->format = "json"; $aop->charset = "UTF-8"; $aop->signType = "RSA2"; $aop->alipayrsaPublicKey=$config['alipayrsaPublicKey']; //實例化具體API對應的request類,類名稱和接口名稱對應,當前調用接口名稱:alipay.trade.app.pay $request = new \AlipayTradeAppPayRequest(); //SDK已經封裝掉了公共參數,這里只需要傳入業務參數 $bizcontent = json_encode([ 'body'=>'**', 'subject'=>$subject, 'out_trade_no'=> $order_sn,//此訂單號為商戶唯一訂單號 'total_amount'=>$totalprice,//保留兩位小數 'product_code'=>'QUICK_MSECURITY_PAY' ]); $request->setNotifyUrl($config['notify_url']); $request->setBizContent($bizcontent); //這里和普通的接口調用不同,使用的是sdkExecute $response = $aop->sdkExecute($request); //htmlspecialchars是為了輸出到頁面時防止被瀏覽器將關鍵參數html轉義,實際打印到日志以及http傳輸不會有這個問題 $datas=$response;//就是orderString 可以直接給客戶端請求,無需再做處理。 $this->arr['code']=0; $this->arr['msg']=$order_sn; $this->arr['info']=$datas; echo json_encode($this->arr);exit;
6.支付回調notify_url。
include_once VENDOR_PATH . 'Alipay/aop/AopClient.php'; $aop = new \AopClient(); $config['alipayrsaPublicKey']=$this->$alipayrsaPublicKey;//公鑰 $aop->alipayrsaPublicKey = $config['alipayrsaPublicKey']; //此處驗簽方式必須與下單時的簽名方式一致 $flag = $aop->rsaCheckV1($_POST, NULL, "RSA2"); //驗簽通過后再實現業務邏輯,比如修改訂單表中的支付狀態。 /** ①驗簽通過后核實如下參數out_trade_no、total_amount、seller_id ②修改訂單表 **/ $out_trade_no = I('post.out_trade_no'); //商戶訂單號
之后對數據庫對應的數據進行修改。
7.訂單查詢接口:
include_once VENDOR_PATH . 'Alipay/aop/SignData.php'; include_once VENDOR_PATH . 'Alipay/aop/AopClient.php'; include_once VENDOR_PATH . 'Alipay/aop/request/AlipayTradeQueryRequest.php'; $config = array( 'appid' =>$this->appid,// 'rsaPrivateKey' =>$this->rsaPrivateKey,//開發者私鑰私鑰 'alipayrsaPublicKey'=>$this->alipayrsaPublicKey,//支付寶公鑰 'charset'=>strtolower('utf-8'),//編碼 'notify_url' =>'',//回調地址(支付寶支付成功后回調修改訂單狀態的地址) 'payment_type' =>1,//(固定值) 'seller_id' =>'',//收款商家賬號 'charset' => 'utf-8',//編碼 'sign_type' => 'RSA',//簽名方式 'timestamp' =>date("Y-m-d H:i:s"), 'version' =>"1.0",//固定值 'url' => 'https://openapi.alipay.com/gateway.do',//固定值 'method' => 'alipay.trade.query',//固定值 ); $aop = new \AopClient(); $aop->gatewayUrl = "https://openapi.alipay.com/gateway.do"; $aop->appId = $config['appid']; $aop->rsaPrivateKey = $config['rsaPrivateKey']; $aop->format = "json"; $aop->charset = "UTF-8"; $aop->signType = "RSA2"; $aop->method = $config['method']; $aop->apiVersion = '1.0'; $aop->alipayrsaPublicKey=$config['alipayrsaPublicKey']; //實例化具體API對應的request類,類名稱和接口名稱對應,當前調用接口名稱:alipay.trade.query $request = new \AlipayTradeQueryRequest(); $bizcontent = json_encode([ 'out_trade_no'=>$order_sn, 'trade_no'=>'' ]); $request->setBizContent($bizcontent); $response = $aop->execute($request); $responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response"; $resultCode = $response->$responseNode->code; if(!empty($resultCode)&&$resultCode == 10000){ $this->arr['code']=0; $this->arr['msg']='success'; echo json_encode($this->arr);exit; } else { $this->arr['code']=100001; $this->arr['msg']='未查詢到訂單信息'; echo json_encode($this->arr);exit; }
到此,相信大家對“php怎么實現支付寶APP支付功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。