微信公众号接口开发--回复消息

微信公众号接口开发–回复消息

作为一个微信公众号,与用户的交互能力是十分重要的,比如根据用户发送的消息和推送事件被动的回复用户消息(文字,图片,视频,图文等等),现在我就测试了几个接口来实现这些功能:

1. 验证开发者和获取用户消息


/**
  * wechat php test
  */

//define your token
define("TOKEN", "wechat");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();
$wechatObj->responseMsg();

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 

你可能感兴趣的:(微信公众号,计算机,php,php,后端)