mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
企业打款增加大于2000的RSA名称加密
This commit is contained in:
parent
dc29ee61a7
commit
c5ff92f778
@ -157,8 +157,11 @@ abstract class BasicWePay
|
|||||||
$location = (preg_match('|^https?://|', $pathinfo) ? '' : $this->base) . $pathinfo;
|
$location = (preg_match('|^https?://|', $pathinfo) ? '' : $this->base) . $pathinfo;
|
||||||
list($header, $content) = $this->_doRequestCurl($method, $location, [
|
list($header, $content) = $this->_doRequestCurl($method, $location, [
|
||||||
'data' => $jsondata, 'header' => [
|
'data' => $jsondata, 'header' => [
|
||||||
"Accept: application/json", "Content-Type: application/json",
|
'Accept: application/json',
|
||||||
'User-Agent: https://thinkadmin.top', "Authorization: WECHATPAY2-SHA256-RSA2048 {$token}",
|
'Content-Type: application/json',
|
||||||
|
'User-Agent: https://thinkadmin.top',
|
||||||
|
"Authorization: WECHATPAY2-SHA256-RSA2048 {$token}",
|
||||||
|
"Wechatpay-Serial: {$this->config['cert_serial']}"
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ use WePayV3\Contracts\BasicWePay;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 普通商户商家转账到零钱
|
* 普通商户商家转账到零钱
|
||||||
* Class Transfers
|
* @class Transfers
|
||||||
* @package WePayV3
|
* @package WePayV3
|
||||||
*/
|
*/
|
||||||
class Transfers extends BasicWePay
|
class Transfers extends BasicWePay
|
||||||
@ -29,10 +29,16 @@ class Transfers extends BasicWePay
|
|||||||
* 发起商家批量转账
|
* 发起商家批量转账
|
||||||
* @param array $body
|
* @param array $body
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
*/
|
*/
|
||||||
public function batchs($body)
|
public function batchs($body)
|
||||||
{
|
{
|
||||||
|
if (isset($body['transfer_detail_list']) && is_array($body['transfer_detail_list'])) {
|
||||||
|
foreach ($body['transfer_detail_list'] as &$item) if (isset($item['user_name'])) {
|
||||||
|
$item['user_name'] = $this->rsaEncode($item['user_name']);
|
||||||
|
}
|
||||||
|
}
|
||||||
return $this->doRequest('POST', '/v3/transfer/batches', json_encode($body, JSON_UNESCAPED_UNICODE), true);
|
return $this->doRequest('POST', '/v3/transfer/batches', json_encode($body, JSON_UNESCAPED_UNICODE), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user