diff --git a/WeChat/Contracts/BasicPushEvent.php b/WeChat/Contracts/BasicPushEvent.php index 1ab0c25..f4a8e73 100644 --- a/WeChat/Contracts/BasicPushEvent.php +++ b/WeChat/Contracts/BasicPushEvent.php @@ -115,34 +115,6 @@ class BasicPushEvent } } - /** - * 验证来自微信服务器 - * @param string $str - * @return bool - */ - private function checkSignature($str = '') - { - $nonce = $this->params->get('nonce'); - $timestamp = $this->params->get('timestamp'); - $msg_signature = $this->params->get('msg_signature'); - $signature = empty($msg_signature) ? $this->params->get('signature') : $msg_signature; - $tmpArr = [$this->config->get('token'), $timestamp, $nonce, $str]; - sort($tmpArr, SORT_STRING); - if (sha1(implode($tmpArr)) == $signature) { - return true; - } - return false; - } - - /** - * 获取公众号推送对象 - * @return array - */ - public function getReceive() - { - return $this->receive->get(); - } - /** * 回复消息 * @param array $data 消息内容 @@ -180,6 +152,34 @@ class BasicPushEvent echo $xml; } + /** + * 验证来自微信服务器 + * @param string $str + * @return bool + */ + private function checkSignature($str = '') + { + $nonce = $this->params->get('nonce'); + $timestamp = $this->params->get('timestamp'); + $msg_signature = $this->params->get('msg_signature'); + $signature = empty($msg_signature) ? $this->params->get('signature') : $msg_signature; + $tmpArr = [$this->config->get('token'), $timestamp, $nonce, $str]; + sort($tmpArr, SORT_STRING); + if (sha1(implode($tmpArr)) == $signature) { + return true; + } + return false; + } + + /** + * 获取公众号推送对象 + * @return array + */ + public function getReceive() + { + return $this->receive->get(); + } + /** * 获取当前微信OPENID * @return string