微信公众号开发中的token配置

收藏
移动web开发项目
7
Apr 23, 2018

需要注意的点:

1 有自己的服务器(sae/bae等都可)

2 git上传代码(使用cmd或者图形工具都可以)

3 文章末尾需要的代码可以在微信公众平台中的token配置说明中进行下载

4 本文开发环境为mac

回答

小泽回答

本文为完成服务器申请和公众号端配置服务器的操作

笔者开发环境为:
OS X 10.11.5
HBulider 7.5.1
新浪云服务器

1、新浪云创建新应用

2、新浪云应用配置

3、配置代码管理方式

4、SourceTree新建仓库连接服务器

5、SourceTree基本配置

6、SourceTree仓库创建成功

7、SourceTree待上传代码界面

8、登录已申请的微信公众平台账号

https://mp.weixin.qq.com

9、开发者工具

10、进入公众平台测试号界面

11、本地仓库新建文件index.php

12、将测试文件上传到新浪云服务器

 

 

13、上传成功界面

14、根据服务器填写微信测试号的配置信息

 

15、配置成功界面

备注:文中第9部的配置本地token值的代码

<?php
define("TOKEN", "token");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();
class wechatCallbackapiTest
{
public function valid()
{
$echoStr = $_GET["echostr"];
if($this->checkSignature()){
echo $echoStr;
exit;
}
}

public function responseMsg()
{
    $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];

    if (!empty($postStr)){
          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);
    sort($tmpArr, SORT_STRING);
    $tmpStr = implode( $tmpArr );
    $tmpStr = sha1( $tmpStr );
    
    if( $tmpStr == $signature ){
        return true;
    }else{
        return false;
    }
}
}

?>

 

(1)

提交成功