5 Star 7 Fork 2

Nottyjay/wechat_case

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
weixin.php 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
include_once "class/WXBizMsgCrypt.php";
$encodingAesKey = "jWmYm7qr5nMoAUwZRjGtBxmz3KA1tkAj3ykkR6q2B2C";
$token = "weixin";
$corpId = "wx5823bf96d3bd56c7";
$sReqMsgSig = $_REQUEST['msg_signature'];
$sReqTimeStamp = $_REQUEST['timestamp'];
$sReqNonce = $_REQUEST['nonce'];
$wxcpt = new WXBizMsgCrypt($token, $encodingAesKey, $corpId);
//post请求的密文数据
$postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
if ($_REQUEST['encrypt_type'] == 'aes'){
$decryptMsg = ""; //解密后的明文
@$errCode = $wxcpt->DecryptMsg($sReqMsgSig, $sReqTimeStamp, $sReqNonce, $postStr, $decryptMsg);
if ($errCode == 0) {
$sMsg = $decryptMsg;
echo "\n---------------------------明文---------------------------\n".$sMsg;
// 解密成功,sMsg即为xml格式的明文
// TODO: 对明文的处理
// For example:
//$xml = new DOMDocument();
//$xml->loadXML($sMsg);
//$content = $xml->getElementsByTagName('Content')->item(0)->nodeValue;
//print("content: " . $content . "\n\n");
} else {
print("ERR: " . $errCode . "\n\n");
//exit(-1);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/nottyjay/wechat_case.git
git@gitee.com:nottyjay/wechat_case.git
nottyjay
wechat_case
wechat_case
master

搜索帮助