主頁 > 知識庫 > php支付寶APP支付功能

php支付寶APP支付功能

熱門標簽:智能外呼電銷系統(tǒng) 哈爾濱400電話辦理到易號網 h5 地圖標注 高識別電銷機器人 拉薩打電話機器人 電銷機器人-快迭智能 寶安400電話辦理 沈陽人工智能電銷機器人公司 合肥外呼系統(tǒng)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,//開發(fā)者私鑰私鑰
  'alipayrsaPublicKey'=>$this->alipayrsaPublicKey,//支付寶公鑰
  'charset'=>strtolower('utf-8'),//編碼
  'notify_url' =>$notify_url,//回調地址(支付寶支付成功后回調修改訂單狀態(tài)的地址)
  '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已經封裝掉了公共參數(shù),這里只需要傳入業(yè)務參數(shù)
   
   $bizcontent = json_encode([
    'body'=>'**',
    'subject'=>$subject,
    'out_trade_no'=> $order_sn,//此訂單號為商戶唯一訂單號
    'total_amount'=>$totalprice,//保留兩位小數(shù)
    'product_code'=>'QUICK_MSECURITY_PAY'
   ]);
   $request->setNotifyUrl($config['notify_url']);
   $request->setBizContent($bizcontent);
  //這里和普通的接口調用不同,使用的是sdkExecute
   $response = $aop->sdkExecute($request);
  //htmlspecialchars是為了輸出到頁面時防止被瀏覽器將關鍵參數(shù)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");
  //驗簽通過后再實現(xiàn)業(yè)務邏輯,比如修改訂單表中的支付狀態(tài)。
  /**
  ①驗簽通過后核實如下參數(shù)out_trade_no、total_amount、seller_id
  ②修改訂單表
  **/
  $out_trade_no = I('post.out_trade_no'); //商戶訂單號

之后對數(shù)據庫對應的數(shù)據進行修改。

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,//開發(fā)者私鑰私鑰
  'alipayrsaPublicKey'=>$this->alipayrsaPublicKey,//支付寶公鑰
  'charset'=>strtolower('utf-8'),//編碼
  'notify_url' =>'',//回調地址(支付寶支付成功后回調修改訂單狀態(tài)的地址)
  '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實現(xiàn)的支付寶網頁支付功能示例【基于TP5框架】
  • PHP支付寶當面付2.0代碼
  • php實現(xiàn)單筆轉賬到支付寶功能
  • php app支付寶回調(異步通知)詳解
  • PHP實現(xiàn)QQ、微信和支付寶三合一收款碼實例代碼
  • PHP實現(xiàn)支付寶即時到賬功能
  • thinkPHP框架對接支付寶即時到賬接口回調操作示例
  • PHP接入支付寶接口失效流程詳解

標簽:威海 巴中 梅州 林芝 張家口 成都 山東 泰州

巨人網絡通訊聲明:本文標題《php支付寶APP支付功能》,本文關鍵詞  php,支付,寶,APP,功能,php,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《php支付寶APP支付功能》相關的同類信息!
  • 本頁收集關于php支付寶APP支付功能的相關信息資訊供網民參考!
  • 推薦文章