百度BAE搭建微信公众平台-git的使用

时间:2022-09-22 19:21:52

百度BAE现在使用还需要先申请实名认证,提交通过后便可以开始使用了。目前是按日计算收费的状态。

在创建应用时选择使用git进行版本控制。

接下来在本地新建一个项目文件夹,比如我在E盘新建了一个optimistic文件夹。

在BAE上复制一下自己的git地址。

然后cmd 打开命令控制行(黑框框)

cd optimistic

进入这个项目的文件夹后

git clone + 复制的git地址

接下来要输入自己BAE的用户名和密码

然后就会发现本地optimistic文件夹下面多了个文件夹,名字是自己BAE上那个项目的id,是一串随机字母,比如我的是 abcdefg

打开abcdefg 就会发现里面有个 .git文件夹,还有index.php 还有个配置文件。

这时候新建一个文件optimistic.php,然后把微信公众平台对接的示例代码copy过来。wx_example.php

代码如下:

<?php
/**
* wechat php test
*/

//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)){

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

?>

默认token是“weixin”

然后保存。

接下来继续在命令行中,cd abcdefg 

git status

命令行会显示一个红色字体的 optimistic.php

接下来 git add optimistic.php 存储到本地(git add . 表所有)

git commit -m '这里可以加注释'

git push同步到云库中

再次输入用户名 密码

酱紫就OK了。

接下来查看BAE中,项目那里会有 发现新版本的提示,点击一下右边的  快速发布,就可以了。

这时候打开公众平台-开发者中心填写URL和token

用这个项目的地址+optimistic.php 作为URL

token是默认的 weixin

我一开始没弄成功。

后来修改了下本地那个配置文件,

打开,把里面的 index.php修改成了 optimistic.php

再按照上面那样上传一遍,再发布。

后来 就可以啦。

附:

git删除操作

示例:git rm index.php

git status 查看状态

git commit -m 'rm'

git push 同步到云库

git分支操作

git branch 查看分支 


git rm -f *.* 删除所有文件

git add . 新增当前目录下所有文件


还有个百度的删除语句 : git rm * -r (我又用了一次这个语句,才把某次想删的东西删光光)