[更新]去除支付宝返回结果签名验证

This commit is contained in:
Anyon 2019-01-12 19:40:04 +08:00
parent 79126e15ba
commit def818b7df
5 changed files with 7 additions and 1 deletions

View File

@ -38,6 +38,7 @@ class Bill extends BasicAliPay
* @param array $options
* @return mixed
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function apply($options)
{

View File

@ -39,6 +39,7 @@ class Pos extends BasicAliPay
* @param array $options
* @return mixed
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function apply($options)
{

View File

@ -38,6 +38,7 @@ class Scan extends BasicAliPay
* @param array $options
* @return mixed
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function apply($options)
{

View File

@ -39,6 +39,7 @@ class Transfer extends BasicAliPay
* @param array $options
* @return mixed
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function apply($options)
{

View File

@ -238,7 +238,9 @@ abstract class BasicAliPay
$data[$method]['code'], $data
);
}
return $this->verify($data[$method], $data['sign']);
return $data[$method];
// 去除返回结果签名检查
// return $this->verify($data[$method], $data['sign']);
}
/**