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

Posted 只要你在,不管多远,我都会找到你!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信公众号服务器配置(校验)相关的知识,希望对你有一定的参考价值。

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;
}
}

以上是关于微信公众号服务器配置(校验)的主要内容,如果未能解决你的问题,请参考以下文章

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

微信公众平台里的服务器配置设置是干啥用的

微信公众号接口怎么配置

怎么为微信公众号配置API接口

个人微信公众号搭建Python实现 -开发配置和微信服务器转入-认识微信公众号(14.1.1)

如何为微信公众号配置接口?