mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
增加 无 headers 处理
This commit is contained in:
parent
c806ba514a
commit
685617267f
@ -175,9 +175,12 @@ abstract class BasicWePay
|
||||
}
|
||||
}
|
||||
try {
|
||||
if (empty($headers)) {
|
||||
return $isjson ? json_decode($content, true) : $content;
|
||||
}
|
||||
$string = join("\n", [$headers['timestamp'], $headers['nonce'], $content, '']);
|
||||
if (!$this->signVerify($string, $headers['signature'], $headers['serial'])) {
|
||||
throw new InvalidResponseException("验证响应签名失败");
|
||||
throw new InvalidResponseException('验证响应签名失败');
|
||||
}
|
||||
} catch (\Exception $exception) {
|
||||
throw new InvalidResponseException($exception->getMessage(), $exception->getCode());
|
||||
|
Loading…
x
Reference in New Issue
Block a user