mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
修改微信海关接口
This commit is contained in:
parent
7197e5296e
commit
4ba213dcea
2
We.php
2
We.php
@ -88,7 +88,7 @@ class We
|
||||
* 定义当前版本
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '1.2.29';
|
||||
const VERSION = '1.2.30';
|
||||
|
||||
/**
|
||||
* 静态配置
|
||||
|
@ -170,7 +170,7 @@ class BasicWePay
|
||||
* @throws InvalidResponseException
|
||||
* @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 = [];
|
||||
if ($isCert) {
|
||||
@ -192,7 +192,8 @@ class BasicWePay
|
||||
}
|
||||
}
|
||||
$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);
|
||||
$result = Tools::xml2arr(Tools::post($url, Tools::arr2xml($params), $option));
|
||||
if ($result['return_code'] !== 'SUCCESS') {
|
||||
|
@ -34,7 +34,7 @@ class Custom extends BasicWePay
|
||||
public function add(array $options = [])
|
||||
{
|
||||
$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 = [])
|
||||
{
|
||||
$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 = [])
|
||||
{
|
||||
$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);
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user