企业微信配置点击事件。
Posted jiaoqing。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了企业微信配置点击事件。相关的知识,希望对你有一定的参考价值。
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");
}
?>
以上是关于企业微信配置点击事件。的主要内容,如果未能解决你的问题,请参考以下文章