企业打款增加大于2000的RSA名称加密

This commit is contained in:
邹景立 2023-05-02 21:17:17 +08:00
parent dc29ee61a7
commit c5ff92f778
2 changed files with 12 additions and 3 deletions

View File

@ -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']}"
], ],
]); ]);

View File

@ -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);
} }