微信開発(PHPは購読番号の公衆番号配置と自動返信を実現)

4719 ワード

まず、微信公衆プラットフォーム(URL:https://mp.weixin.qq.com)購読番号を申請し、開発中に開発者ツールを見つけて公衆プラットフォームのテストアカウントをクリックし、テストアカウント内で微信開発実験を行う.
    1. 自分の有効なドメイン名サイトとTOKEN(暗号)を設定し、TOKENはPHPコードのTOKEN検証と一致しなければならない.そうしないと、ずっと構成に失敗する.
このコードが書かれたファイルは必ず有効なドメイン名のウェブサイトに転送します.設定したURLと同じでなければなりません).
以下はPHPコード(微信公衆プラットフォーム開発における開発者ドキュメント内に一部のコードがある)です.
run();

class wechatCallbackapiTest
{
	public function run()
    {

    	if ($this->checkSignature()==false) {
    		die('    ');
    	}

    	if (isset($_GET["echostr"])) {
    		$echostr = $_GET["echostr"];
    		echo $echostr;
    		exit();
    	} 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"];

      	//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 = "
							
							
							%s
							
							
							0
							";             
				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;
		}
	}
}

?>

2.自動返信
まず、上のフォルダにメソッドを書き直してから、このメソッドを呼び出して、名前を変更できないように注意します.
以下のコードは購読番号に天気を送って、それは天気が晴れて、休暇を発給して、それはあなたに「よく奮闘しないで何を考えていますか?」と返事します.他に返事をすると「Welcome to wechat world!
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();
                //$msgType = $postObj->MsgType;//      
                //$event = $postObj->Event;//    ,subscribe(  )、unsubscribe(    )
                $textTpl = "
							
							
							%s
							
							
							0
							";             
				if(!empty( $keyword ))
                {
              		$msgType = "text";
              		$contentStr = $this->autohuifu($keyword);
                	//$contentStr = "Welcome to wechat world!";
                	$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                	echo $resultStr;
                }else{
                	echo "Input something...";
                }

        }else {
        	echo "";
        	exit;
        }
    }
	

    public function autohuifu($keyword){
		
		if($keyword =='  '){
			$contentStr = "    ";
                	
        	}else if($keyword =='  '){
        	$contentStr = "          ?";

        }else{
        	$contentStr = "Welcome to wechat world!";
        
        }

        return $contentStr;