获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
运行的程序后缀要加上去,醉了 xxxxxx.com/index.php
微信公众号服务器配置token验证失败https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Access_Overview.html $signature = $_GET["signature"]; $timestamp = $_GET["timestamp"]; $nonce = $_GET["nonce"]; $token = TOKEN; $tmpArr = array($token, $timestamp, $nonce); sort($tmpArr, SORT_STRING); $tmpStr = implode( $tmpArr ); $tmpStr = sha1( $tmpStr ); if( $tmpStr == $signature ){ return true; }else{ return false; } 请问按照这个配置 为什么老是 token验证失败
2020-11-13