[更新]修改支付宝支付 #17

This commit is contained in:
Anyon 2018-11-12 22:04:06 +08:00
parent f8c8c9d317
commit dd9ff2856f
6 changed files with 8 additions and 11 deletions

View File

@ -41,6 +41,6 @@ class Bill extends BasicAliPay
*/ */
public function apply($options) public function apply($options)
{ {
return $this->getResult($options); return $this->getResult($options, 'get');
} }
} }

View File

@ -42,6 +42,6 @@ class Pos extends BasicAliPay
*/ */
public function apply($options) public function apply($options)
{ {
return $this->getResult($options, 'get'); return $this->getResult($options);
} }
} }

View File

@ -41,6 +41,6 @@ class Scan extends BasicAliPay
*/ */
public function apply($options) public function apply($options)
{ {
return $this->getResult($options, 'get'); return $this->getResult($options);
} }
} }

View File

@ -190,14 +190,13 @@ abstract class BasicAliPay
/** /**
* 请求接口并验证访问数据 * 请求接口并验证访问数据
* @param array $options * @param array $options
* @param string $method
* @return array|boolean * @return array|boolean
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
protected function getResult($options, $method = 'post') protected function getResult($options)
{ {
$this->applyData($options); $this->applyData($options);
$data = json_decode(Tools::$method($this->gateway, $this->options->get()), true); $data = json_decode(Tools::get($this->gateway, $this->options->get()), true);
$method = str_replace('.', '_', $this->options['method']) . '_response'; $method = str_replace('.', '_', $this->options['method']) . '_response';
if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') { if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') {
throw new \WeChat\Exceptions\InvalidResponseException( throw new \WeChat\Exceptions\InvalidResponseException(

View File

@ -24,7 +24,7 @@ try {
// $pay = new \AliPay\Bill($config); // $pay = new \AliPay\Bill($config);
// 请参考请求参数https://docs.open.alipay.com/api_15/alipay.data.dataservice.bill.downloadurl.query // 请参考请求参数https://docs.open.alipay.com/api_15/alipay.data.dataservice.bill.downloadurl.query
$result = $pay->apply([ $result = $pay->apply([
'bill_date' => '2017-11-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM) 'bill_date' => '2018-10-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM)
'bill_type' => 'signcustomer', // 账单类型(trade指商户基于支付宝交易收单的业务账单,signcustomer是指基于商户支付宝余额收入及支出等资金变动的帐务账单) 'bill_type' => 'signcustomer', // 账单类型(trade指商户基于支付宝交易收单的业务账单,signcustomer是指基于商户支付宝余额收入及支出等资金变动的帐务账单)
]); ]);
echo '<pre>'; echo '<pre>';
@ -32,5 +32,3 @@ try {
} catch (Exception $e) { } catch (Exception $e) {
echo $e->getMessage(); echo $e->getMessage();
} }

View File

@ -24,7 +24,7 @@ try {
// $pay = new \AliPay\Scan($config); // $pay = new \AliPay\Scan($config);
// 参考链接https://docs.open.alipay.com/api_28/alipay.fund.trans.toaccount.transfer // 参考链接https://docs.open.alipay.com/api_28/alipay.fund.trans.toaccount.transfer
$result = $pay->apply([ $result = $pay->apply([
'out_biz_no' => '', // 订单号 'out_biz_no' => time(), // 订单号
'payee_type' => 'ALIPAY_LOGONID', // 收款方账户类型(ALIPAY_LOGONID | ALIPAY_USERID) 'payee_type' => 'ALIPAY_LOGONID', // 收款方账户类型(ALIPAY_LOGONID | ALIPAY_USERID)
'payee_account' => 'demo@sandbox.com', // 收款方账户 'payee_account' => 'demo@sandbox.com', // 收款方账户
'amount' => '10', // 转账金额 'amount' => '10', // 转账金额