Use WeChat public account to be careful.

Source: Internet
Author: User
Tags sha1 sprintf
New user subscription, will be pushed by a "hello2bizuser" text before, change to push a "subscribe" event.
This in PHP how to write Ah, I now have a public account, but people concerned about me, can not immediately send a message.
 Valid (); Class Wechatcallbackapitest{public function valid () {$echoStr = $_get["Echostr"];        Valid signature, option if ($this->checksignature ()) {echo $echoStr;        Exit }} Public Function responsemsg () {//get post data, could be due to the different environments$poststr = $GLOBALS ["      Http_raw_post_data "]; Extract Post Dataif (!empty ($POSTSTR)) {$POSTOBJ = simplexml_load_string ($postStr, ' SimpleX                Mlelement ', libxml_nocdata);                $fromUsername = $POSTOBJ->fromusername;                $toUsername = $POSTOBJ->tousername;                $keyword = Trim ($postObj->content);                $time = time (); $TEXTTPL = "
 
   
    
    %s 0 
    %s 
 
    
    %s 
 
    
    %s 
 
    
    %s 
 
    
 
 
 
 
 
 

  
 ";                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 ($tmp STR); if ($tmpStr = = $signature) {return true;} Else{return false;}}? >

This is the official demo, ask the Great God to teach


Reply to discussion (solution)

I sent it to you before number 26th. A text is a content in XML ...
The time you send after the event you are reading $keyword = Trim ($postObj->content); Change into
$keyword = Trim ($postObj->event); Then judge

NN now, thank you upstairs.

 Responsemsg (); class Wechatcallbackapitest{public function valid () {$echoStr = $_get["Echostr"];        Valid signature, option if ($this->checksignature ()) {echo $echoStr;        Exit }} Public Function responsemsg () {//get post data, could be due to the different environments$poststr = $GLOBALS ["      Http_raw_post_data "]; Extract Post Dataif (!empty ($POSTSTR)) {$POSTOBJ = simplexml_load_string ($postStr, ' SimpleX                Mlelement ', libxml_nocdata);                $fromUsername = $POSTOBJ->fromusername;          $toUsername = $POSTOBJ->tousername;          $msgType = Strtolower (Trim ($postObj->msgtype));          if ($msgType = = ' event ') {$keyword = Trim ($postObj->event);                }else{$keyword = Trim ($postObj->content);}                $time = time (); $TEXTTPL = "
 
   
    %s 
    
    %s 
    
   
    %s  
     %s 
     
     %s 
     
    
      0 
     
   
  
 "; if (!empty ($keyword)) {if ($keyword = = ' Subscribe ') {$contentStr = "even                  ";                  }else{$contentStr = "text";                } $msgType = "text";                $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 ($tmp STR); if ($tmpStr = = $signature) {return true;} Else{return false;}}? >
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.