码迷,mamicode.com
首页 > 微信 > 详细

微信公众号服务器配置(校验)

时间:2020-05-29 11:49:35      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:sign   lse   token   als   配置   string   签名   公众号   ==   

public function serve()
{
$echoStr = $_GET["echostr"];
if($this->checkSignature()){
echo $echoStr;
exit;
}
}
//检查签名
private function checkSignature()
{
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$token = "xxxxxxxxxxx";
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr, SORT_STRING);
$tmpStr = implode($tmpArr);
$tmpStr = sha1($tmpStr);
if($tmpStr == $signature){
return true;

}else{
return false;
}
}

微信公众号服务器配置(校验)

标签:sign   lse   token   als   配置   string   签名   公众号   ==   

原文地址:https://www.cnblogs.com/ycqi/p/12986521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!