欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信开发平台开发小试

程序员文章站 2022-06-26 09:56:57
微信和随之微信产生的开放平台最近着实火了一下。一直想做个微信的平台试试,最近有了个好点子,想尽快把它实现出来,好在微信不需要什么ui等等的设计,只需要把逻辑展现出来即可了。其实微信公众平台如果只是作...
微信和随之微信产生的开放平台最近着实火了一下。一直想做个微信的平台试试,最近有了个好点子,想尽快把它实现出来,好在微信不需要什么ui等等的设计,只需要把逻辑展现出来即可了。其实微信公众平台如果只是作为一个发布信息的平台的话,也就是“编辑模式”下其实是无需敲代码的。只是在开发者模式下需要开发者去设计一定的逻辑和代码去实现特定的功能,接下来就说下开发的起步:

 

1.开发微信公众平台首先要有服务器资源,当然那种编辑模式的不算。所谓的编辑模式就是那种单纯的每天推送一条消息的公众账号。服务器资源各种云各种服务器都是可以的,推荐bae/sae/坚果/阿里等等的一种,各有好处,而且由于竞争的缘故?都会有部分免费的资源相送,拿来练练手就足够的了。

 

a.申请bae账号,创建应用,如果是测试的话去微信公众平台的主页下载测试的php代码,只需将其中的token修改成自己的token即可。例如下面的php测试代码,代码的逻辑很清晰,即一个验证过程,也能定义一部分的逻辑操作。上传这个文件并且创建自己应用的版本1:

 

 

<?php  
/** 
  * wechat php test 
  */  
  
//define your token  
define("token", "weixin");//此时你的微信公众平台的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;  
        }  
    }  
}  
  

 

?>  

创建新版本成功后如图所示,此时应用创建成功:

 

微信开发平台开发小试