[更新]修改支付宝支付及项目配置

This commit is contained in:
Anyon 2018-11-13 09:40:49 +08:00
parent d8a3b73f58
commit fed0e83057
3 changed files with 9 additions and 6 deletions

3
.gitignore vendored
View File

@ -4,4 +4,5 @@
/vendor
/Cache
/Test/cert
/composer.lock
/nbproject
/composer.lock

View File

@ -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: " .

View File

@ -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());
}