mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]个性支付宝支付 #17
This commit is contained in:
parent
42a07c153b
commit
f8c8c9d317
@ -42,6 +42,6 @@ class Pos extends BasicAliPay
|
||||
*/
|
||||
public function apply($options)
|
||||
{
|
||||
return $this->getResult($options);
|
||||
return $this->getResult($options, 'get');
|
||||
}
|
||||
}
|
@ -41,6 +41,6 @@ class Scan extends BasicAliPay
|
||||
*/
|
||||
public function apply($options)
|
||||
{
|
||||
return $this->getResult($options);
|
||||
return $this->getResult($options, 'get');
|
||||
}
|
||||
}
|
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user