码迷,mamicode.com
首页 > 微信 > 详细

企业微信配置点击事件。

时间:2018-11-26 17:20:29      阅读:524      评论:0      收藏:0      [点我收藏+]

标签:include   timestamp   The   key   nbsp   mmm   平台   echo   验证   

1、技术分享图片

 

2、

 技术分享图片

3、URL接受值进行签名验证。

<?php
include_once "../commmm/WXBizMsgCrypt.php";/*微信提供 demo*/
// 假设企业号在公众平台上设置的参数如下
$encodingAesKey = "mPNKZTChTEAVeJvoVlDOYf1rH3wCMNmuRVQ8wtgVsV5";
$token = "1234";
$receiveid = "";
$wxcpt = new WXBizMsgCrypt($token, $encodingAesKey, $receiveid);
// get the paramters
$sVerifyMsgSig = $_GET[‘msg_signature‘];
$sVerifyTimeStamp = $_GET[‘timestamp‘];
$sVerifyNonce = $_GET[‘nonce‘];
$sVerifyEchoStr = $_GET[‘echostr‘];
$sEchoStr = "";
$errCode = $wxcpt->VerifyURL($sVerifyMsgSig, $sVerifyTimeStamp, $sVerifyNonce, $sVerifyEchoStr, $sEchoStr);
if ($errCode == 0) {
$url = "http://www.baidu.com";
header("Location:$url");
} else {
print("ERR: " . $errCode . "\n\n");
}
?>

企业微信配置点击事件。

标签:include   timestamp   The   key   nbsp   mmm   平台   echo   验证   

原文地址:https://www.cnblogs.com/yyhhblog/p/10021067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!