The content of this article is about PHP WeChat API access and keyword automatic reply. Now I share it with everyone. Friends in need can refer to the content of this article.
https:// blog.csdn.net/self_realian/article/details/70849159
Usage mode classification of public accounts
1, edit mode : There is a WeChat public platform that provides WeChat public account managers with a simple, visual operation interface. It is mainly to facilitate
WeChat public account managers and enable them to perform some simple WeChat operations
2, Developer mode: It is to call some public interfaces of WeChat to complete some of its own business
Steps to access the API interface in the application
1, fill in the server URL , token (note: only supports port 80), that is, the http service must be opened at port 80 to receive the sent message
The url here refers to the url of the third-party server, and its function is mainly to receive WeChat push The message
The token here is the password agreed between the developer and the WeChat public platform. It is mainly used to verify the true legitimacy of the third-party server
2, verify the server address The validity, encryption/verification process is as follows:
(1) Sort the three parameters token, timestamp, and nonce in lexicographic order (these three are transmitted by WeChat through the get method. Parameters, you can use these three parameters to verify whether the request comes from WeChat)
(2) Splice the three parameter strings into one string for sha1 encryption
(3) Development The encrypted string obtained by the user can be compared with signature, indicating that the request comes from WeChat
3, about access_token
(1)access_token Relationship with appid and appsecred
When you register a WeChat public account on the WeChat public platform, the WeChat public platform generates an appid and appsecred for you. These two values are your unique identity on the WeChat public platform. Identification
appid and appsecred (edd7d19a4d8c625ed1244d17f78a9165) are used to generate access_token. Access_token is actually a dynamic password. It is time-sensitive and valid for a period of time.
Access_token can also be understood as calling WeChat public Keys of some interfaces of the platform
Features: (1) Unique validity (2) Global validity (As for the detailed explanation of access_token, you can enter WeChat and view the "Developer Documentation")
WeChat open interface
1, get access_token
2, get the WeChat server address
After saying this, the following is the code part. First of all, I would like to remind everyone that if you want to add these functions of your own, you must first have a domain name that can be accessed by your own public network. If you don't have one, you can apply for one on Tencent Cloud or Alibaba Cloud (the framework I use is ThinkPHP3.2.2)
#[php] view plain copy
<?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function index(){ $timestamp = $_GET['timestamp'];//timestamp其实就是一个时间戳 $nonce = $_GET['nonce'];//nonce是一个随机参数 $token = "weixin";//这个token填写你在微信公众平台上写的那个值 $signature = $_GET['signature'];//这个signature其实就是在微信公众平台已经加密好的字符串 $echostr = $_GET['echostr']; $array = array( $timestamp, $nonce, $token); sort($array); $tmpstr = implode('', $array); $tmpstr = sha1($tmpstr); if( $tmpstr == $signature && $echostr){ echo $echostr; exit; }else{ $this->reponseMsg(); } } public function reponseMsg(){ $postArr = $GLOBALS['HTTP_RAW_POST_DATA']; $postObj = simplexml_load_string( $postArr ); if( strtolower( $postObj->MsgType) == 'event'){ //如果是关注事件(subscribe) if( strtolower($postObj->Event == 'subscribe') ){ //回复用户消息 $toUser = $postObj->FromUserName; $fromUser = $postObj->ToUserName; $time = time(); $msgType = 'text'; $content = '欢迎关注 书旅and良玉 微信公众账号'.$postObj->FromUserName.'-'.$postObj->ToUserName; $template = "<xml> <ToUserName><![CDATA[%s]]></ToUserName> <FromUserName><![CDATA[%s]]></FromUserName> <CreateTime>%s</CreateTime> <MsgType><![CDATA[%s]]></MsgType> <Content><![CDATA[%s]]></Content> </xml>"; $info = sprintf($template, $toUser, $fromUser, $time, $msgType, $content); echo $info; } } //回复纯文本或单图文消息 if(($postObj->MsgType) == 'text' && trim($postObj->Content) == '夏目友人帐'){ $toUser = $postObj->FromUserName; $fromUser = $postObj->ToUserName; $arr = array( array( 'title'=>'夏目友人帐', 'description'=>"此生无悔入夏目", 'picUrl'=>'http://img4.duitang.com/uploads/item/201508/16/20150816015528_X8dKY.jpeg', 'url'=>'http://www.shulvchen.cn', ), ); $template = "<xml> <ToUserName><![CDATA[%s]]></ToUserName> <FromUserName><![CDATA[%s]]></FromUserName> <CreateTime>%s</CreateTime> <MsgType><![CDATA[%s]]></MsgType> <ArticleCount>".count($arr)."</ArticleCount> <Articles>"; foreach($arr as $k=>$v){ $template .="<item> <Title><![CDATA[".$v['title']."]]></Title> <Description><![CDATA[".$v['description']."]]></Description> <PicUrl><![CDATA[".$v['picUrl']."]]></PicUrl> <Url><![CDATA[".$v['url']."]]></Url> </item>"; } $template .="</Articles> </xml> "; echo sprintf($template, $toUser, $fromUser, time(), 'news'); }else{ switch( trim($postObj->Content) ){ case 'bb': $content = '我喜欢你'; break; case '良玉': $content = '我喜欢你'; break; case '书旅': $content = '加油'; break; case 'dsdf': $content = '不愿错过他'; break; case '垒哥': $content = '垒哥已死,有事儿烧纸'; break; case '书旅and良玉': $content = 'Forever with you'; break; case '学弟': $content = '书旅是你学长'; break; default: $content = "<a href='http://www.baidu.com'>百度一下,你就知道(点击文字,进入百度)</a>"; } $template1 = "<xml> <ToUserName><![CDATA[%s]]></ToUserName> <FromUserName><![CDATA[%s]]></FromUserName> <CreateTime>%s</CreateTime> <MsgType><![CDATA[%s]]></MsgType> <Content><![CDATA[%s]]></Content> </xml>"; $fromUser = $postObj->ToUserName;//消息从哪里来 $toUser = $postObj->FromUserName;//发送给谁 $time = time(); //$content = '我喜欢你'; $msgType = 'text'; echo sprintf($template1, $toUser, $fromUser,$time, $msgType, $content); } } }
I hope this blog will be helpful to newbies who like WeChat development like me
Related recommendations:
Detailed example of how to implement a chatbot using Python+Slack API
php method of calling interface api
The above is the detailed content of PHP WeChat API access and keyword automatic reply. For more information, please follow other related articles on the PHP Chinese website!

TomodifydatainaPHPsession,startthesessionwithsession_start(),thenuse$_SESSIONtoset,modify,orremovevariables.1)Startthesession.2)Setormodifysessionvariablesusing$_SESSION.3)Removevariableswithunset().4)Clearallvariableswithsession_unset().5)Destroythe

Arrays can be stored in PHP sessions. 1. Start the session and use session_start(). 2. Create an array and store it in $_SESSION. 3. Retrieve the array through $_SESSION. 4. Optimize session data to improve performance.

PHP session garbage collection is triggered through a probability mechanism to clean up expired session data. 1) Set the trigger probability and session life cycle in the configuration file; 2) You can use cron tasks to optimize high-load applications; 3) You need to balance the garbage collection frequency and performance to avoid data loss.

Tracking user session activities in PHP is implemented through session management. 1) Use session_start() to start the session. 2) Store and access data through the $_SESSION array. 3) Call session_destroy() to end the session. Session tracking is used for user behavior analysis, security monitoring, and performance optimization.

Using databases to store PHP session data can improve performance and scalability. 1) Configure MySQL to store session data: Set up the session processor in php.ini or PHP code. 2) Implement custom session processor: define open, close, read, write and other functions to interact with the database. 3) Optimization and best practices: Use indexing, caching, data compression and distributed storage to improve performance.

PHPsessionstrackuserdataacrossmultiplepagerequestsusingauniqueIDstoredinacookie.Here'showtomanagethemeffectively:1)Startasessionwithsession_start()andstoredatain$_SESSION.2)RegeneratethesessionIDafterloginwithsession_regenerate_id(true)topreventsessi

In PHP, iterating through session data can be achieved through the following steps: 1. Start the session using session_start(). 2. Iterate through foreach loop through all key-value pairs in the $_SESSION array. 3. When processing complex data structures, use is_array() or is_object() functions and use print_r() to output detailed information. 4. When optimizing traversal, paging can be used to avoid processing large amounts of data at one time. This will help you manage and use PHP session data more efficiently in your actual project.

The session realizes user authentication through the server-side state management mechanism. 1) Session creation and generation of unique IDs, 2) IDs are passed through cookies, 3) Server stores and accesses session data through IDs, 4) User authentication and status management are realized, improving application security and user experience.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Atom editor mac version download
The most popular open source editor

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
