最近开始搞一下微信公众平台开发,感觉应该蛮有意思的,看起来也不难。

1.注册微信公众平台账号

官网:https://mp.weixin.qq.com/
注册什么的就不用说了,按步骤来就行了。

2. 准备服务器

准备服务器资源,百度BAE新浪ACE什么的也都可以的,作为例子这里使用PHP环境+MySQL数据库作为程序运行环境.

3. 上传接口文件

微信开发者文档里就有php代码例子下载,如下:

<?php
/* 微信接口文件 */
//define your token
define("TOKEN", "weixin");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();

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 = "<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 ))
            {
                $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;
        }
    }
}

创建一个php文件,命名为wechat_gz.php,将以上代码内容写入,上传到根目录下,需要注意的是define(“TOKEN”, “weixin”);这里的token要记住。

4. 设置服务器配置

在公众平台后台开发选项的基本配置中有一些服务器配置选项如图所示:

URL处填写刚才上传的文件的url地址;token写文件中定义的TOKEN值,这里是weixin;EncodingAESKey是随机生成的密匙,点生成就好,确定后提交!

在服务器配置页面启用,弹出启用成功,开发模式就已经启用成功了。