[更新]修正接口描述信息

This commit is contained in:
Anyon 2018-02-05 11:52:59 +08:00
parent 3550a80226
commit f3f833cd9f

View File

@ -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