1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > php开发 公众号自动回复 微信公众号开发之文本消息自动回复php代码_php实例 - sha1...

php开发 公众号自动回复 微信公众号开发之文本消息自动回复php代码_php实例 - sha1...

时间:2020-06-02 06:27:43

相关推荐

php开发 公众号自动回复 微信公众号开发之文本消息自动回复php代码_php实例 - sha1...

我现在有一个系统,是别人开发的,他也是用的sha1算法。。 现在一个字符串,我算出来是:0451bbea51492560499d7af75b378ed096c815e8 系统加密的:quGLhYR2v0A4Ah3s45EVL6ag134%3D 是不是系统的这个加密的字符串...

本文实例为大家分享了php微信文本消息自动回复 别代码,供大家参考,具体内容如下

1.PHP示例代码下载 下载地址1:/08/yuanma/phpwx().rar

下载地址2:https://mp./wiki/home/index.html(开始开发-》接入指南-》PHP示例代码下载)

2.wx_sample.php初始代码

valid();

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)){

/* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection,

the best way is to check the validity of xml by yourself */

libxml_disable_entity_loader(true);

$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);

$fromUsername = $postObj->FromUserName;

$toUsername = $postObj->ToUserName;

$keyword = trim($postObj->Content);

$time = time();

$textTpl = "%s0";

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()

{

// you must define TOKEN by yourself

if (!defined("TOKEN")) {

throw new Exception('TOKEN is not defined!');

}

$signature = $_GET["signature"];

$timestamp = $_GET["timestamp"];

$nonce = $_GET["nonce"];

$token = TOKEN;

$tmpArr = array($token, $timestamp, $nonce);

// use SORT_STRING rule

sort($tmpArr, SORT_STRING);

$tmpStr = implode( $tmpArr );

$tmpStr = sha1( $tmpStr );

if( $tmpStr == $signature ){

return true;

}else{

return false;

}

}

}

?>

3.调用回复信息方法 在wx_sample.php文件中注释掉$wechatObj->valid();,在其下增加一句“$wechatObj->responseMsg();”。

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)){

/* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection,

the best way is to check the validity of xml by yourself */

libxml_disable_entity_loader(true);

$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);

$fromUsername = $postObj->FromUserName;

$toUsername = $postObj->ToUserName;

$keyword = trim($postObj->Content);

$time = time();

$textTpl = "%s0";

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()

{

// you must define TOKEN by yourself

if (!defined("TOKEN")) {

throw new Exception('TOKEN is not defined!');

}

$signature = $_GET["signature"];

$timestamp = $_GET["timestamp"];

$nonce = $_GET["nonce"];

$token = TOKEN;

$tmpArr = array($token, $timestamp, $nonce);

// use SORT_STRING rule

sort($tmpArr, SORT_STRING);

$tmpStr = implode( $tmpArr );

$tmpStr = sha1( $tmpStr );

if( $tmpStr == $signature ){

return true;

}else{

return false;

}

}

}

?>

4.关键词自动回复和关注回复 $keyword保存着用户微信端发来的文本信息。

官方开发者文档:https://mp./wiki/home/index.html(消息管理-》接收消息-接收事件推送-》1.关注/取消关注事件)

关注事件与一般的文本消息有两处不同,一是MsgType值是event,二是增加了Event值是subscribe。由于官方文档(最初的wx_sample.php)没有提取这个参数,需要我们自己提取。在程序中增加两个变量$msgType和$event。

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)){

/* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection,

the best way is to check the validity of xml by yourself */

libxml_disable_entity_loader(true);

$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);

$fromUsername = $postObj->FromUserName;

$toUsername = $postObj->ToUserName;

$keyword = trim($postObj->Content);

$time = time();

$msgType = $postObj->MsgType;//消息类型

$event = $postObj->Event;//时间类型,subscribe(订阅)、unsubscribe(取消订阅)

$textTpl = "%s0";

switch($msgType){

case "event":

if($event=="subscribe"){

$contentStr = "Hi,欢迎关注海仙日用百货!"."\n"."回复数字'1',了解店铺地址."."\n"."回复数字'2',了解商品种类.";

}

break;

case "text":

switch($keyword){

case "1":

$contentStr = "店铺地址:"."\n"."杭州市江干艮山西路233号新东升市场地下室第一排.";

break;

case "2":

$contentStr = "商品种类:"."\n"."杯子、碗、棉签、水桶、垃圾桶、洗碗巾(刷)、拖把、扫把、"

."衣架、粘钩、牙签、垃圾袋、保鲜袋(膜)、剪刀、水果刀、饭盒等.";

break;

default:

$contentStr = "对不起,你的内容我会稍后回复";

}

break;

}

$msgType = "text";

$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);

echo $resultStr;

}else {

echo "";

exit;

}

}

private function checkSignature()

{

// you must define TOKEN by yourself

if (!defined("TOKEN")) {

throw new Exception('TOKEN is not defined!');

}

$signature = $_GET["signature"];

$timestamp = $_GET["timestamp"];

$nonce = $_GET["nonce"];

$token = TOKEN;

$tmpArr = array($token, $timestamp, $nonce);

// use SORT_STRING rule

sort($tmpArr, SORT_STRING);

$tmpStr = implode( $tmpArr );

$tmpStr = sha1( $tmpStr );

if( $tmpStr == $signature ){

return true;

}else{

return false;

}

}

}

?>

以上就是微信公众号开发之文本消息自动回复php代码_php实例的全部内容,希望对大家的学习有所帮助,更多相关内容请关注点凡PHP技术博客()!

我现在有一个系统,是别人开发的,他也是用的sha1算法。。 现在一个字符串,我算出来是:0451bbea51492560499d7af75b378ed096c815e8 系统加密的:quGLhYR2v0A4Ah3s45EVL6ag134%3D 是不是系统的这个加密的字符串..

...CII字符 然后客户端这么计算reply:passphrase=sha1("password")storedhash=sha1(passphrase)reply=xor(passphrase, sha1(public_seed,storedhash) 其中storedhash即是服务器存在数据

var sha1=CryptoJS.SHA1("abc");document.write("sha1:",sha1);document.write("");var sha1_Latin=sha1.toString(CryptoJS.enc.Latin1);document.write("sha1_L

sha1算法为啥是不一样的值,请高人指点哪里错了。我现在有一个系统,是别人开发的,他也是用的sha1算法。。现在一个字符串,我算出来是:0451bbea51492560499d7af75b378ed096c815e8系统加密的:quGLhYR2v0A4Ah3s45EVL6ag134%...

...quot; 的 SHA-1 散列:<?php

$str = "Hello";

echo sha1($str);

?>定义和用法sha1() 函数计算字符串的 SHA-1 散列。sha1() 函数使用美国 Secure Hash 算法 1。来自 RFC 3174

...为Secure Hash Algorithm(安全哈希算法),PHP提供的sha1()函数使用的就是SHA算法,函数的语法如下: string sha 1 (string str [, bool raw_output])函数返回一个40位的十六进制数,如果参数raw_output为true,则

...ode>

该代码JS端...

...41 -Jan-28 14:38:54 openssl-1.0.1r.tar.gz (SHA256) (PGP sign) (SHA1)5135 -Jan-28 14:38:54 openssl-1.0.2f.tar.gz (SHA256) (P

做对接的时候,服务商做的AES加密通过SHA1PRNG算法(只要password一样,每次生成的数组都是一样的,所以可以用来做加密解密的key)进行了又一次加密,搞了好几个小时,直接看对应的代码吧,可以参考一下,只有Java的加密源码

...essage,const uint8 *hash_stage2){SHA1_CONTEXT sha1_context;uint8 buf[SHA1_HASH_SIZE];uint8 hash_stage2_reassured[SHA1_HASH_SIZE];

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。