Home > Backend Development > PHP Tutorial > 微信开发如何发送个性化回复

微信开发如何发送个性化回复

WBOY
Release: 2016-06-06 20:06:49
Original
1128 people have browsed it

微信关注想提示,你是第几个关注的会员。然后不知道怎么把处理好的内容发出去?或者说不知道怎么去使用微信的相关接口。
不知道如何把这样的内容发送出去
微信开发如何发送个性化回复

回复内容:

微信关注想提示,你是第几个关注的会员。然后不知道怎么把处理好的内容发出去?或者说不知道怎么去使用微信的相关接口。
不知道如何把这样的内容发送出去
微信开发如何发送个性化回复

看下微信开发文档,有一个关注事件,然后处理好你的内容,放入content里面回复

<code>            if($Event == "subscribe")
            {
                $MsgType = "text";
                $Content = "感谢关注";
                $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $MsgType, $Content);
                echo $resultStr;
            }</code>
Copy after login

简单的给你一个例子,这个只是订阅事件的消息恢复,更多事件回复参考微信公众号开发文档 http://mp.weixin.qq.com/wiki/home/

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template