微信开发接口



接入微信公众平台开发,开发者需要按照如下步骤完成:

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端口。


 



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值