diff --git a/AliPay/Pos.php b/AliPay/Pos.php index b173082..e24df3e 100644 --- a/AliPay/Pos.php +++ b/AliPay/Pos.php @@ -42,6 +42,6 @@ class Pos extends BasicAliPay */ public function apply($options) { - return $this->getResult($options); + return $this->getResult($options, 'get'); } } \ No newline at end of file diff --git a/AliPay/Scan.php b/AliPay/Scan.php index b86afc1..d2571f0 100644 --- a/AliPay/Scan.php +++ b/AliPay/Scan.php @@ -41,6 +41,6 @@ class Scan extends BasicAliPay */ public function apply($options) { - return $this->getResult($options); + return $this->getResult($options, 'get'); } } \ No newline at end of file diff --git a/WeChat/Contracts/BasicAliPay.php b/WeChat/Contracts/BasicAliPay.php index 826446e..cca833c 100644 --- a/WeChat/Contracts/BasicAliPay.php +++ b/WeChat/Contracts/BasicAliPay.php @@ -190,13 +190,14 @@ abstract class BasicAliPay /** * 请求接口并验证访问数据 * @param array $options + * @param string $method * @return array|boolean * @throws \WeChat\Exceptions\InvalidResponseException */ - protected function getResult($options) + protected function getResult($options, $method = 'post') { $this->applyData($options); - $data = json_decode(Tools::post($this->gateway, $this->options->get()), true); + $data = json_decode(Tools::$method($this->gateway, $this->options->get()), true); $method = str_replace('.', '_', $this->options['method']) . '_response'; if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') { throw new \WeChat\Exceptions\InvalidResponseException(