搜尋

首頁  >  問答  >  主體

我這個介面配置為啥不成功

function checkSignature($token) {
    $signature = !empty($_GET["signature"]) ? $_GET["signature"] : null;
    $timestamp = !empty($_GET["timestamp"]) ? $_GET["timestamp"] : null;
    $nonce = !empty($_GET["nonce"]) ? $_GET["nonce"] : null;
    $tmpArr = array($token, $timestamp, $nonce);
    sort($tmpArr, SORT_STRING);
    $tmpStr = implode($tmpArr);
    return sha1($tmpStr) == $signature;
}
 
// 微信公众后台填写的Token
$token = 'itsource';
// 如果验证正确,则返回参数echostr的内容,否则终止执行
if(checkSignature($token)) {
    echo $_GET['echostr'];
}
exit();


#
遇见是最美的时光遇见是最美的时光1967 天前1186

全部回覆(4)我來回復

  • 遇见是最美的时光

    遇见是最美的时光2019-08-21 10:39:07

    沒有,

    回覆
    0
  • 殘留の回憶

    殘留の回憶2019-08-21 09:19:44

    沒有任何提示麼?

    回覆
    0
  • 遇见是最美的时光

    沒有,開始提交了幾次不行,然後放了一會提交好了,謝謝

    遇见是最美的时光 · 2019-08-21 10:40:37
    殘留の回憶

    恩恩

    殘留の回憶 · 2019-08-21 13:13:39
  • 取消回覆