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;
|
||||
list($header, $content) = $this->_doRequestCurl($method, $location, [
|
||||
'data' => $jsondata, 'header' => [
|
||||
"Accept: application/json", "Content-Type: application/json",
|
||||
'User-Agent: https://thinkadmin.top', "Authorization: WECHATPAY2-SHA256-RSA2048 {$token}",
|
||||
'Accept: application/json',
|
||||
'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
|
||||
*/
|
||||
class Transfers extends BasicWePay
|
||||
@ -29,10 +29,16 @@ class Transfers extends BasicWePay
|
||||
* 发起商家批量转账
|
||||
* @param array $body
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user