1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 问题:微信公众平台的开发中一直显示的是 token验证失败

问题:微信公众平台的开发中一直显示的是 token验证失败

时间:2021-11-24 14:58:05

相关推荐

问题:微信公众平台的开发中一直显示的是 token验证失败

后端开发|php教程

php

后端开发-php教程

广告系统源码 java,vscode访问后端跨域,bbr加速ubuntu,小米的tomcat 下载,爬虫论文引言,php webpack,百度seo 快速推广,免费申请wap网站,手机企业网站全站模板lzw

URL能够正常的访问

使用的是微信公众平台给出的文档。

android 考试 源码下载,ubuntu音频驱动,运行几天后tomcat,xpath网页爬虫,php程序设计试题,驻马店seo关键词霸屏技术lzw

valid(); }else { }class wechatCallbackapiTest{ public function valid() { $echoStr = $_GET["echostr"]; //valid signature , option if($this->checkSignature()){ echo $echoStr; exit; } } public function responseMsg() { //get post data, May be due to the different environments $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; //extract post data if (!empty($postStr)){/* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection, the best way is to check the validity of xml by yourself */libxml_disable_entity_loader(true);$postObj = simplexml_load_string($postStr, SimpleXMLElement, LIBXML_NOCDATA);$fromUsername = $postObj->FromUserName;$toUsername = $postObj->ToUserName;$keyword = trim($postObj->Content);$time = time();$textTpl = " <![CDATA[%s]]> <![CDATA[%s]]> %s <![CDATA[%s]]> <![CDATA[%s]]> 0 "; if(!empty( $keyword )){ $msgType = "text"; $contentStr = "Welcome to wechat world!"; $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); echo $resultStr;}else{ echo "Input something...";} }else { echo ""; exit; } } private function checkSignature() { // you must define TOKEN by yourself if (!defined("TOKEN")) { throw new Exception(TOKEN is not defined!); }$signature = $_GET["signature"]; $timestamp = $_GET["timestamp"]; $nonce = $_GET["nonce"]; $token = TOKEN; $tmpArr = array($token, $timestamp, $nonce); // use SORT_STRING rule sort($tmpArr, SORT_STRING); $tmpStr = implode( $tmpArr ); $tmpStr = sha1( $tmpStr );if( $tmpStr == $signature ){ return true; }else{ return false; } }}?>

改动位置就在最前面加入了一个if 判断,后面没有做任何的修改

android 办公系统源码,ubuntu路由转发命令,爬虫文件保存不了,php引入php文件报错,seo行动清单lzw

google了方法也试了没有解决,所有在这里发帖了,谢谢各位。

回复内容:

URL能够正常的访问

使用的是微信公众平台给出的文档。

valid(); }else { }class wechatCallbackapiTest{ public function valid() { $echoStr = $_GET["echostr"]; //valid signature , option if($this->checkSignature()){ echo $echoStr; exit; } } public function responseMsg() { //get post data, May be due to the different environments $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; //extract post data if (!empty($postStr)){/* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection, the best way is to check the validity of xml by yourself */libxml_disable_entity_loader(true);$postObj = simplexml_load_string($postStr, SimpleXMLElement, LIBXML_NOCDATA);$fromUsername = $postObj->FromUserName;$toUsername = $postObj->ToUserName;$keyword = trim($postObj->Content);$time = time();$textTpl = " <![CDATA[%s]]> <![CDATA[%s]]> %s <![CDATA[%s]]> <![CDATA[%s]]> 0 "; if(!empty( $keyword )){ $msgType = "text"; $contentStr = "Welcome to wechat world!"; $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); echo $resultStr;}else{ echo "Input something...";} }else { echo ""; exit; } } private function checkSignature() { // you must define TOKEN by yourself if (!defined("TOKEN")) { throw new Exception(TOKEN is not defined!); }$signature = $_GET["signature"]; $timestamp = $_GET["timestamp"]; $nonce = $_GET["nonce"]; $token = TOKEN; $tmpArr = array($token, $timestamp, $nonce); // use SORT_STRING rule sort($tmpArr, SORT_STRING); $tmpStr = implode( $tmpArr ); $tmpStr = sha1( $tmpStr );if( $tmpStr == $signature ){ return true; }else{ return false; } }}?>

改动位置就在最前面加入了一个if 判断,后面没有做任何的修改

google了方法也试了没有解决,所有在这里发帖了,谢谢各位。

我们在学习的时候也是遇到这个问题,请你用的是租用的虚拟空间,还是利用百度app或者是新浪app的云服务器,如果是前者提到的,那么需要先完成实名验证的。这样才可以去掉那个烦人的提醒,能可以连上微信后台服务器。

如果还是有其他问题,可以继续提问,谢谢

phpif($_GET[echostr]){$wechatObj->valid();}else { $wechatObj->responseMsg();//?}

你要确保你 echo $echoStr; 之前没有任何输出才行。。。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。