mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修正接口描述信息
This commit is contained in:
parent
3550a80226
commit
f3f833cd9f
@ -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 消息内容
|
* @param array $data 消息内容
|
||||||
@ -180,6 +152,34 @@ class BasicPushEvent
|
|||||||
echo $xml;
|
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
|
* 获取当前微信OPENID
|
||||||
* @return string
|
* @return string
|
||||||
|
Loading…
x
Reference in New Issue
Block a user