[更新]个性支付宝支付 #17

This commit is contained in:
Anyon 2018-11-12 21:58:40 +08:00
parent 42a07c153b
commit f8c8c9d317
3 changed files with 5 additions and 4 deletions

View File

@ -42,6 +42,6 @@ class Pos extends BasicAliPay
*/ */
public function apply($options) public function apply($options)
{ {
return $this->getResult($options); return $this->getResult($options, 'get');
} }
} }

View File

@ -41,6 +41,6 @@ class Scan extends BasicAliPay
*/ */
public function apply($options) public function apply($options)
{ {
return $this->getResult($options); return $this->getResult($options, 'get');
} }
} }

View File

@ -190,13 +190,14 @@ abstract class BasicAliPay
/** /**
* 请求接口并验证访问数据 * 请求接口并验证访问数据
* @param array $options * @param array $options
* @param string $method
* @return array|boolean * @return array|boolean
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
protected function getResult($options) protected function getResult($options, $method = 'post')
{ {
$this->applyData($options); $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'; $method = str_replace('.', '_', $this->options['method']) . '_response';
if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') { if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') {
throw new \WeChat\Exceptions\InvalidResponseException( throw new \WeChat\Exceptions\InvalidResponseException(