mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
增加新版支付打款接口
This commit is contained in:
parent
01fa1479e8
commit
418e132e3e
@ -35,7 +35,7 @@ class Transfer extends BasicAliPay
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建数据操作
|
* 旧版 向指定支付宝账户转账
|
||||||
* @param array $options
|
* @param array $options
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
@ -45,4 +45,44 @@ class Transfer extends BasicAliPay
|
|||||||
{
|
{
|
||||||
return $this->getResult($options);
|
return $this->getResult($options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新版 向指定支付宝账户转账
|
||||||
|
* @param array $options
|
||||||
|
* @return array|bool
|
||||||
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
|
*/
|
||||||
|
public function create($options = [])
|
||||||
|
{
|
||||||
|
$this->options->set('method', 'alipay.fund.trans.uni.transfer');
|
||||||
|
return $this->getResult($options);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新版 转账业务单据查询接口
|
||||||
|
* @param array $options
|
||||||
|
* @return array|bool
|
||||||
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
|
*/
|
||||||
|
public function queryResult($options = [])
|
||||||
|
{
|
||||||
|
$this->options->set('method', 'alipay.fund.trans.common.query');
|
||||||
|
return $this->getResult($options);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新版 支付宝资金账户资产查询接口
|
||||||
|
* @param array $options
|
||||||
|
* @return array|bool
|
||||||
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
|
*/
|
||||||
|
public function queryAccount($options = [])
|
||||||
|
{
|
||||||
|
$this->options->set('method', 'alipay.fund.account.query');
|
||||||
|
return $this->getResult($options);
|
||||||
|
}
|
||||||
}
|
}
|
2
We.php
2
We.php
@ -81,7 +81,7 @@ class We
|
|||||||
* 定义当前版本
|
* 定义当前版本
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.2.13';
|
const VERSION = '1.2.17';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 静态配置
|
* 静态配置
|
||||||
|
37
_test/alipay-transfer-account.php
Normal file
37
_test/alipay-transfer-account.php
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | WeChatDeveloper
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 官方网站: http://think.ctolog.com
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 开源协议 ( https://mit-license.org )
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
// 1. 手动加载入口文件
|
||||||
|
include "../include.php";
|
||||||
|
|
||||||
|
// 2. 准备公众号配置参数
|
||||||
|
$config = include "./alipay.php";
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 实例支付对象
|
||||||
|
// $pay = We::AliPayTransfer($config);
|
||||||
|
// $pay = new \AliPay\Transfer($config);
|
||||||
|
$pay = \AliPay\Transfer::instance($config);
|
||||||
|
|
||||||
|
// 参考链接:https://docs.open.alipay.com/api_28/alipay.fund.account.query/
|
||||||
|
$result = $pay->queryAccount([
|
||||||
|
'alipay_user_id' => $config['appid'], // 订单号
|
||||||
|
'account_scene_code' => 'SCENE_000_000_000',
|
||||||
|
]);
|
||||||
|
echo '<pre>';
|
||||||
|
var_export($result);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo $e->getMessage();
|
||||||
|
}
|
||||||
|
|
44
_test/alipay-transfer-create.php
Normal file
44
_test/alipay-transfer-create.php
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | WeChatDeveloper
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 官方网站: http://think.ctolog.com
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 开源协议 ( https://mit-license.org )
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
// 1. 手动加载入口文件
|
||||||
|
include "../include.php";
|
||||||
|
|
||||||
|
// 2. 准备公众号配置参数
|
||||||
|
$config = include "./alipay.php";
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 实例支付对象
|
||||||
|
// $pay = We::AliPayTransfer($config);
|
||||||
|
// $pay = new \AliPay\Transfer($config);
|
||||||
|
$pay = \AliPay\Transfer::instance($config);
|
||||||
|
|
||||||
|
// 参考链接:https://docs.open.alipay.com/api_28/alipay.fund.trans.uni.transfer/
|
||||||
|
$result = $pay->create([
|
||||||
|
'out_biz_no' => time(), // 订单号
|
||||||
|
'trans_amount' => '10', // 转账金额
|
||||||
|
'product_code' => 'TRANS_ACCOUNT_NO_PWD',
|
||||||
|
'biz_scene' => 'DIRECT_TRANSFER',
|
||||||
|
'payee_info' => [
|
||||||
|
'identity' => 'zoujingli@qq.com',
|
||||||
|
'identity_type' => 'ALIPAY_LOGON_ID',
|
||||||
|
'name' => '邹景立',
|
||||||
|
],
|
||||||
|
]);
|
||||||
|
echo '<pre>';
|
||||||
|
var_export($result);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo $e->getMessage();
|
||||||
|
}
|
||||||
|
|
38
_test/alipay-transfer-query.php
Normal file
38
_test/alipay-transfer-query.php
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | WeChatDeveloper
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 官方网站: http://think.ctolog.com
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | 开源协议 ( https://mit-license.org )
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||||
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
// 1. 手动加载入口文件
|
||||||
|
include "../include.php";
|
||||||
|
|
||||||
|
// 2. 准备公众号配置参数
|
||||||
|
$config = include "./alipay.php";
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 实例支付对象
|
||||||
|
// $pay = We::AliPayTransfer($config);
|
||||||
|
// $pay = new \AliPay\Transfer($config);
|
||||||
|
$pay = \AliPay\Transfer::instance($config);
|
||||||
|
|
||||||
|
// 参考链接:https://docs.open.alipay.com/api_28/alipay.fund.trans.common.query/
|
||||||
|
$result = $pay->queryResult([
|
||||||
|
'out_biz_no' => '201808080001', // 订单号
|
||||||
|
'product_code' => 'TRANS_ACCOUNT_NO_PWD',
|
||||||
|
'biz_scene' => 'DIRECT_TRANSFER',
|
||||||
|
]);
|
||||||
|
echo '<pre>';
|
||||||
|
var_export($result);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo $e->getMessage();
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user