TOken 验证失败?

<?php

// 本类由系统自动生成,仅供测试用途

class IndexAction extends Action {

public function index(){

$timestamp=$_GET['timestamp'];

$nonce=$_GET['nonce'];

$token="weixin";

$signature=$_GET['signature'];

$array=array($timestamp,$nonce,$token);

sort($array);

//2.将排序后的三个参数拼接之后用sha1加密

$temstr=implode('',$array);

$temstr=sha1($temstr);

//3.将加密后的字符串与signature进行对比,判断该请求是否来自微信

if($temstr==$signature){

  echo $_GET['echostr'];

  exit;

}

}



?>

http://img.mukewang.com/58293614000120aa05390206.jpg

慕粉3464048
浏览 930回答 1
1回答

一瞬儿光

你这个地址对吗?你放浏览器访问下试试
打开App,查看更多内容
随时随地看视频慕课网APP