最全面 think php 实现微信公众号回复编号进行投票,自定义菜单功能

https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Receiving_standard_messages.html   微信文档

公众号后台,“基本配置”-“服务器配置”,填写服务器地址,注意,填写的方法要经过验证

最全面 think php 实现微信公众号回复编号进行投票,自定义菜单功能

test方法只是测试,具体的要看你自己的方法,其中$token就是后台填写的“令牌”,验证通过后,所有在公众号发送的信息,都会转发到所填的链接上,注意:开启服务器配置后,公众号的自定义菜单会失效,公众号的自定义菜单会消失

public function test(){ $nonce = $_GET[\'nonce\']; $token = \'*******\'; $timestamp = $_GET[\'timestamp\']; $echostr = $_GET[\'echostr\']; $signature = $_GET[\'signature\']; //形成数组,然后按字典序排序 $array = array(); $array = array($nonce, $timestamp, $token); sort($array); //拼接成字符串,sha1加密 ,然后与signature进行校验 $str = sha1( implode( $array ) ); echo $echostr; exit; }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwsggy.html