mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]去除支付宝返回结果签名验证
This commit is contained in:
parent
79126e15ba
commit
def818b7df
@ -38,6 +38,7 @@ class Bill extends BasicAliPay
|
|||||||
* @param array $options
|
* @param array $options
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function apply($options)
|
public function apply($options)
|
||||||
{
|
{
|
||||||
|
@ -39,6 +39,7 @@ class Pos extends BasicAliPay
|
|||||||
* @param array $options
|
* @param array $options
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function apply($options)
|
public function apply($options)
|
||||||
{
|
{
|
||||||
|
@ -38,6 +38,7 @@ class Scan extends BasicAliPay
|
|||||||
* @param array $options
|
* @param array $options
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function apply($options)
|
public function apply($options)
|
||||||
{
|
{
|
||||||
|
@ -39,6 +39,7 @@ class Transfer extends BasicAliPay
|
|||||||
* @param array $options
|
* @param array $options
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function apply($options)
|
public function apply($options)
|
||||||
{
|
{
|
||||||
|
@ -238,7 +238,9 @@ abstract class BasicAliPay
|
|||||||
$data[$method]['code'], $data
|
$data[$method]['code'], $data
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return $this->verify($data[$method], $data['sign']);
|
return $data[$method];
|
||||||
|
// 去除返回结果签名检查
|
||||||
|
// return $this->verify($data[$method], $data['sign']);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user