接入微信公众平台开发,开发者需要按照如下步骤完成:
1.填写服务器配置(url,token);
2.验证消息的确来自微信服务器(signature,timestamp,nonce,echostr);
3.依据接口文档实现业务逻辑,代码如下:
<?php
/**
* wechat php test
*/
//define your token
define("TOKEN", "weixin");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->run();
class wechatCallbackapiTest
{
public function run()
{
if($this->checkSignature()==false){
die('非法请求');
}
if(isset($_GET["echostr"])){
$echostr = $_GET['echostr'];
echo $echostr;
}else{
$this->responseMsg();
}
// $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"];
file_put_contents('msg.txt',$postStr,FILE_APPEND);
//extract post data
if (!empty($postStr)){
$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
$fromUsername = $postObj->FromUserName;
$toUsername = $postObj->ToUserName;
$keyword = trim($postObj->Content);
$time = time();
$textTpl = "<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[%s]]></MsgType>
<Content><![CDATA[%s]]></Content>
<FuncFlag>0</FuncFlag>
</xml>";
if(!empty( $keyword ))
{
$contentStr = $this->huifu($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;
}
}
public function huifu($keywords){
if($keywords == "天气"){
$contentStr = "今天挺冷的!";
return $contentStr;
}else if($keywords == "放假"){
$contentStr = "放假日期为四月五号到六号!";
return $contentStr;
}else{
$contentStr = "sorry,我不知道";
return $contentStr;
}
}
private function checkSignature()
{
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$token = TOKEN;
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr);
$tmpStr = implode( $tmpArr );
$tmpStr = sha1( $tmpStr );
if( $tmpStr == $signature ){
return true;
}else{
return false;
}
}
}
?>
其实打通接口一行代码即可完成:echo $_GET['echostr'];
另请注意,微信公众号接口必须以http://或https://开头,分别支持80端口和443端口。