修改微信海关接口

This commit is contained in:
邹景立 2021-04-15 11:16:50 +08:00
parent 7197e5296e
commit 4ba213dcea
3 changed files with 7 additions and 6 deletions

2
We.php
View File

@ -88,7 +88,7 @@ class We
* 定义当前版本 * 定义当前版本
* @var string * @var string
*/ */
const VERSION = '1.2.29'; const VERSION = '1.2.30';
/** /**
* 静态配置 * 静态配置

View File

@ -170,7 +170,7 @@ class BasicWePay
* @throws InvalidResponseException * @throws InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
protected function callPostApi($url, array $data, $isCert = false, $signType = 'HMAC-SHA256', $needSignType = true) protected function callPostApi($url, array $data, $isCert = false, $signType = 'HMAC-SHA256', $needSignType = true, $needNonceStr = true)
{ {
$option = []; $option = [];
if ($isCert) { if ($isCert) {
@ -192,7 +192,8 @@ class BasicWePay
} }
} }
$params = $this->params->merge($data); $params = $this->params->merge($data);
$needSignType && ($params['sign_type'] = strtoupper($signType)); if (!$needNonceStr) unset($params['nonce_str']);
if ($needSignType) $params['sign_type'] = strtoupper($signType);
$params['sign'] = $this->getPaySign($params, $signType); $params['sign'] = $this->getPaySign($params, $signType);
$result = Tools::xml2arr(Tools::post($url, Tools::arr2xml($params), $option)); $result = Tools::xml2arr(Tools::post($url, Tools::arr2xml($params), $option));
if ($result['return_code'] !== 'SUCCESS') { if ($result['return_code'] !== 'SUCCESS') {

View File

@ -34,7 +34,7 @@ class Custom extends BasicWePay
public function add(array $options = []) public function add(array $options = [])
{ {
$url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/customs/customdeclareorder'; $url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/customs/customdeclareorder';
return $this->callPostApi($url, $options, false, 'MD5'); return $this->callPostApi($url, $options, false, 'MD5', false, false);
} }
/** /**
@ -47,7 +47,7 @@ class Custom extends BasicWePay
public function get(array $options = []) public function get(array $options = [])
{ {
$url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/customs/customdeclarequery'; $url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/customs/customdeclarequery';
return $this->callPostApi($url, $options, false, 'MD5'); return $this->callPostApi($url, $options, false, 'MD5', true, false);
} }
@ -61,7 +61,7 @@ class Custom extends BasicWePay
public function reset(array $options = []) public function reset(array $options = [])
{ {
$url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/newcustoms/customdeclareredeclare'; $url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/newcustoms/customdeclareredeclare';
return $this->callPostApi($url, $options, false, 'MD5'); return $this->callPostApi($url, $options, false, 'MD5', true, false);
} }
} }