企业微信配置点击事件。

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");
}
?>

企业微信配置点击事件。

上一篇:微信公共号H5页面跳转小程序。


下一篇:Java 文件路径相关