mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]修改支付宝支付 #17
This commit is contained in:
parent
f8c8c9d317
commit
dd9ff2856f
@ -41,6 +41,6 @@ class Bill extends BasicAliPay
|
||||
*/
|
||||
public function apply($options)
|
||||
{
|
||||
return $this->getResult($options);
|
||||
return $this->getResult($options, 'get');
|
||||
}
|
||||
}
|
@ -42,6 +42,6 @@ class Pos extends BasicAliPay
|
||||
*/
|
||||
public function apply($options)
|
||||
{
|
||||
return $this->getResult($options, 'get');
|
||||
return $this->getResult($options);
|
||||
}
|
||||
}
|
@ -41,6 +41,6 @@ class Scan extends BasicAliPay
|
||||
*/
|
||||
public function apply($options)
|
||||
{
|
||||
return $this->getResult($options, 'get');
|
||||
return $this->getResult($options);
|
||||
}
|
||||
}
|
@ -190,14 +190,13 @@ abstract class BasicAliPay
|
||||
/**
|
||||
* 请求接口并验证访问数据
|
||||
* @param array $options
|
||||
* @param string $method
|
||||
* @return array|boolean
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
protected function getResult($options, $method = 'post')
|
||||
protected function getResult($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';
|
||||
if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') {
|
||||
throw new \WeChat\Exceptions\InvalidResponseException(
|
||||
|
@ -24,13 +24,11 @@ try {
|
||||
// $pay = new \AliPay\Bill($config);
|
||||
// 请参考(请求参数):https://docs.open.alipay.com/api_15/alipay.data.dataservice.bill.downloadurl.query
|
||||
$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是指基于商户支付宝余额收入及支出等资金变动的帐务账单)
|
||||
]);
|
||||
echo '<pre>';
|
||||
var_export($result);
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -24,7 +24,7 @@ try {
|
||||
// $pay = new \AliPay\Scan($config);
|
||||
// 参考链接:https://docs.open.alipay.com/api_28/alipay.fund.trans.toaccount.transfer
|
||||
$result = $pay->apply([
|
||||
'out_biz_no' => '', // 订单号
|
||||
'out_biz_no' => time(), // 订单号
|
||||
'payee_type' => 'ALIPAY_LOGONID', // 收款方账户类型(ALIPAY_LOGONID | ALIPAY_USERID)
|
||||
'payee_account' => 'demo@sandbox.com', // 收款方账户
|
||||
'amount' => '10', // 转账金额
|
||||
|
Loading…
x
Reference in New Issue
Block a user