公司不忙的时候,自己研究了下微信公众平台。然后各种找资料各种研究。
这是我自己的php代码
/**
* wechat php test
*/
//define your token
define("TOKEN", "token");
$wechatObj = new wechatCallbackapiTest();
if(isset($_GET["echostr"])){
#验证过token,成为开发者之后,可以直接$wechatObj->responseMsg();
$wechatObj->valid();
}else{
$wechatObj->responseMsg();
}
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)){
$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
#这里有从用户通过公众平台接收过来的数据,具体是什么类型的数据,开发者文档上写的很清楚,可以去上面查。
$fromUsername = $postObj->FromUserName;
$toUsername = $postObj->ToUserName;
$keyword = trim($postObj->Content);
$msgType = $postObj->MsgType;
$time = time();
switch( $msgType ){
case "text":
#这个xml格式的数据是你服务器上的数据,是要传回公众平台的。我在这刚开始有点糊涂了
$textTpl = "
#这里是我自己写的,关于时间的自动回复
if( $keyword =='时间' || $keyword =='time' || $keyword =="shijian"){break;