app第三方支付宝支付

努力尽今夕,少年犹可夸。这篇文章主要讲述app第三方支付宝支付相关的知识,希望能为你提供帮助。
tp5作为服务端,给app提供接口

以下代码已经完成整个支付宝支付的流程,其他的是app端的事情。

如有疑问,请留言,或者加QQ群交流:193569204

下载sdk php版本:
地址为:https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.ZZ0U51& treeId=54& articleId=106370& docType=1

解压放到extend目录下
如:

app第三方支付宝支付

文章图片



以下代码值得说明的是:htmlspecialchars是为了输出到页面时防止被浏览器将关键参数html转义,实际打印到日志以及http传输不会有这个问题

意思是说:你返回给app端不需要htmlspecialchars 直接返回$aop-> sdkExecute($request)的参数即可

这是个很大的坑,不然会报 ALI38173的错误。

参数注意看文档,不要写错哦。参数参考地址https://docs.open.alipay.com/204/105465/

现在开始支付宝的开发,如下:

common目录下新建个AliPay.php
< ?php /** * Dabuba System 大布吧系统 * * ==================================================================== * @linkhttp://www.dabuba.com/ * @copyright Copyright (c) 2016 Dabuba.com All rights reserved. * @licensehttp://www.apache.org/licenses/LICENSE.-2.0 * ==================================================================== * * @packageAPP支付宝支付 * * @subpackage支付宝支付 * * @authorTggui 2017-7-4 23:52:27 * */namespace dbbappcommon; use thinkController; class AliPay extends Controller {var $aop; /** * 初始化 */ protected function _initialize() { parent::_initialize(); //支付宝支付 require_once(EXTEND_PATH.‘alipay/aop/AopClient.php‘); $this-> aop=new AopClient(); $this-> aop-> gatewayUrl= config(‘alipay_gatewayUrl‘); $this-> aop-> appId= config(‘alipay_appId‘); $this-> aop-> rsaPrivateKey= config(‘alipay_rsaPrivateKey‘); //私有密钥 $this-> aop-> format= "JSON"; $this-> aop-> charset= "utf-8"; $this-> aop-> signType= "RSA2"; $this-> aop-> alipayrsaPublicKey= config(‘alipay_rsaPublicKey‘); //共有密钥 }/** * 创建APP支付订单 * * @param string $body 对一笔交易的具体描述信息。 * @param string $subject 商品的标题/交易标题/订单标题/订单关键字等。 * @param string $order_sn 商户网站唯一订单号 * @return array 返回订单信息 */ public function tradeAppPay($body, $subject, $order_sn, $total_amount) { require_once(EXTEND_PATH.‘alipay/aop/request/AlipayTradeAppPayRequest.php‘); //实例化具体API对应的request类,类名称和接口名称对应,当前调用接口名称:alipay.trade.app.pay $request = new AlipayTradeAppPayRequest(); //SDK已经封装掉了公共参数,这里只需要传入业务参数 $bizcontent=[ ‘body‘=> $body, ‘subject‘=> $subject, ‘out_trade_no‘=> $order_sn, ‘timeout_express‘=> ‘1d‘,//失效时间为 1天 ‘total_amount‘=> $total_amount,//价格 ‘product_code‘=> ‘QUICK_MSECURITY_PAY‘, ]; //商户外网可以访问的异步地址 (异步回掉地址,根据自己需求写) $request-> setNotifyUrl(url("/pay/AliPayNotify")); $request-> setBizContent(json_encode($bizcontent)); //这里和普通的接口调用不同,使用的是sdkExecute $response = $this-> aop-> sdkExecute($request); return $response; //htmlspecialchars是为了输出到页面时防止被浏览器将关键参数html转义,实际打印到日志以及http传输不会有这个问题 }/** * 异步通知验签 * * @param string $params 参数 * @param string $signType 签名类型:默认RSA * @return bool 是否通过 */ public function rsaCheck($params, $signType) { return $this-> aop-> rsaCheckV1($params, NULL, $signType); }}

在所需要new AliPay()的控制器名称之前加:
use dbbappcommonAliPay;

创建支付订单参数
$alipay= new AliPay(); //参数自己看上面AliPay.php的tradeAppPay函数 $orderInfo= $alipay-> tradeAppPay($orderBody, $orderTitle, $out_trade_no, (float)$price); //将获取的参数返回给app端 jsonReturn是自定义的方法 jsonReturn(1, 2101003, [‘payinfo‘=> $orderInfo], ‘操作成功‘);

common.php的文件的jsonReturn方法
/** * 以json方式格式化输出 * * @param int $status 状态:0-失败,1-成功 * @param int $msg 返回状态码 * @param string/array $data 数据 * @param string $text 提示文字 * @return string */ function jsonReturn($status=0, $code=0, $data=https://www.songbingjia.com/android/‘‘, $msg=‘‘,$type = 1) {$json_arr = array(‘status‘=> $status,‘code‘=> $code); if(!empty($msg)){ $json_arr[‘msg‘] = $msg; } if(!empty($data)){ $json_arr[‘data‘] = $data; } header(‘Content-Type:application/json; charset=utf-8‘); if ($type == 1) { exit(json_encode($json_arr)); } else if ($type == 2) { return json_encode($json_arr); }}

根据回调地址新起个控制器Pay.php
/** * 支付宝支付异步通知 */ public function AliPayNotify() { $request= input(‘post.‘); //写入文件做日志 调试用 //$log = "< br /> ".‘===================‘."".date("Y-m-d H:i:s")."".json_encode($request); //@file_put_contents(‘upload/alipay.html‘, $log, FILE_APPEND); $signType = $request[‘sign_type‘]; $alipay = new AliPay(); $flag = $alipay-> rsaCheck($request, $signType); if ($flag) { //支付成功:TRADE_SUCCESS交易完成:TRADE_FINISHED if ($request[‘trade_status‘] == ‘TRADE_SUCCESS‘ || $request[‘trade_status‘] == ‘TRADE_FINISHED‘) { //这里根据项目需求来写你的操作 如更新订单状态等信息 更新成功返回‘success‘即可 $object =json_decode(($request[‘fund_bill_list‘]),true); $trade_type=$object[0][‘fundChannel‘]; $data=https://www.songbingjia.com/android/[ ‘pay_status‘=> 1, ‘pay_type‘=> 1, ‘trade_type‘=> $trade_type, ‘pay_time‘=> strtotime($request[‘gmt_payment‘]) ]; $buyer_pay_amount = $request[‘buyer_pay_amount‘]; $out_trade_no=$request[‘out_trade_no‘]; $saveorder=model(‘orders‘)-> successPay($out_trade_no,$buyer_pay_amount,$data); if ($saveorder==1) { exit(‘success‘); //成功处理后必须输出这个字符串给支付宝 } else { exit(‘fail‘); } } else { exit(‘fail‘); } } else { exit(‘fail‘); } }

 
 
 
【app第三方支付宝支付】文章摘自:http://www.thinkphp.cn/code/3329.html

    推荐阅读