mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +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
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.2.29';
|
const VERSION = '1.2.30';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 静态配置
|
* 静态配置
|
||||||
|
@ -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') {
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user