diff --git a/.gitignore b/.gitignore index d13044c..3803ef2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ /vendor /Cache /Test/cert -/composer.lock +/nbproject +/composer.lock \ No newline at end of file diff --git a/WeChat/Contracts/BasicAliPay.php b/WeChat/Contracts/BasicAliPay.php index 15534c3..36140ce 100644 --- a/WeChat/Contracts/BasicAliPay.php +++ b/WeChat/Contracts/BasicAliPay.php @@ -196,8 +196,8 @@ abstract class BasicAliPay protected function getResult($options) { $this->applyData($options); - $data = json_decode(Tools::get($this->gateway, $this->options->get()), true); $method = str_replace('.', '_', $this->options['method']) . '_response'; + $data = json_decode(Tools::get($this->gateway, $this->options->get()), true); if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') { throw new \WeChat\Exceptions\InvalidResponseException( "Error: " . diff --git a/WeChat/Contracts/BasicWeChat.php b/WeChat/Contracts/BasicWeChat.php index 30bbc25..3dd4eb0 100644 --- a/WeChat/Contracts/BasicWeChat.php +++ b/WeChat/Contracts/BasicWeChat.php @@ -148,10 +148,12 @@ class BasicWeChat try { return Tools::json2arr(Tools::get($url)); } catch (InvalidResponseException $e) { - if (!$this->isTry && in_array($e->getCode(), ['40014', '40001', '41001', '42001'])) { - $this->delAccessToken(); - $this->isTry = true; - return call_user_func_array([$this, $this->currentMethod['method']], $this->currentMethod['arguments']); + if (isset($this->currentMethod['method']) && empty($this->isTry)) { + if (in_array($e->getCode(), ['40014', '40001', '41001', '42001'])) { + $this->delAccessToken(); + $this->isTry = true; + return call_user_func_array([$this, $this->currentMethod['method']], $this->currentMethod['arguments']); + } } throw new InvalidResponseException($e->getMessage(), $e->getCode()); }