热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

微信开放平台之公众号第三方平台探讨总结

1、申请地址:https:open.weixin.qq.com2、填写开发资料:说明:授权事件接收URL,用于获取微信服务器每10分钟推送的ComponentVerifyTicket,

1、申请地址:https://open.weixin.qq.com/

2、填写开发资料:


  

点击进行授权:

再点击登陆并且授权的时候,会要求用管理员微信扫一扫确认授权。

授权成功后就得到被授权公众号的授权信息了,包括appId,authorizer_access_token,authorizer_refresh_token,头像,公众号类型等信息,其中authorizer_refresh_token必须完整保存好。

这样就可以完成一个公众号的授权了。

3、处理消息

	//公众号消息与事件接收URL
//此处为实例,逻辑需要自己处理,(注意加解密)
public function eventmsg(){
import("@.ORG.aes.WXBizMsgCrypt");
$wxData = $this->weixin_account;
$encodingAesKey = $wxData['encodingAesKey'];
$token = $wxData['token'];
$appId = $wxData['appId'];
$timeStamp = empty($_GET['timestamp']) ? "" : trim($_GET['timestamp']) ;
$nOnce= empty($_GET['nonce']) ? "" : trim($_GET['nonce']) ;
$msg_sign = empty($_GET['msg_signature']) ? "" : trim($_GET['msg_signature']) ;

$encryptMsg = file_get_contents('php://input');
$pc = new WXBizMsgCrypt($token, $encodingAesKey, $appId);

$xml_tree = new DOMDocument();
$xml_tree->loadXML($encryptMsg);
$array_e = $xml_tree->getElementsByTagName('Encrypt');
$encrypt = $array_e->item(0)->nodeValue;


$format = "";
$from_xml = sprintf($format, $encrypt);
            // 第三方收到公众号平台发送的消息
$msg = '';
              $errCode = $pc->decryptMsg($msg_sign, $timeStamp, $nonce, $from_xml, $msg);

if ($errCode == 0) {
//print("解密后: " . $msg . "\n");
$xml = new DOMDocument();
$xml->loadXML($msg);

$array_e = $xml->getElementsByTagName('Content');
$cOntent= $array_e->item(0)->nodeValue;

$array_e2 = $xml->getElementsByTagName('ToUserName');
$ToUserName = $array_e2->item(0)->nodeValue;

$array_e3 = $xml->getElementsByTagName('FromUserName');
$FromUserName = $array_e3->item(0)->nodeValue;

$array_e5 = $xml->getElementsByTagName('MsgType');
$MsgType = $array_e5->item(0)->nodeValue;

//加密消息
$encryptMsg = '';
$text = "


$stime


";

$errCode = $pc->encryptMsg($text, $timeStamp, $nonce, $encryptMsg);
echo $encryptMsg;
                       exit();


} else {
print($errCode . "\n");
exit();
}
}

  到此授权基本完成了。

 

4、全网发布检测

         if ($MsgType=="text") {
$needle ='QUERY_AUTH_CODE:';
$tmparray = explode($needle,$content);
if(count($tmparray)>1){
//3、模拟粉丝发送文本消息给专用测试公众号,第三方平台方需在5秒内返回空串
//表明暂时不回复,然后再立即使用客服消息接口发送消息回复粉丝
$cOntentx= str_replace ($needle,'',$content);
$info = $this->weObj->get_authorization_info($contentx);
$test_token = $info['authorizer_access_token'];
$content_re = $contentx."_from_api";
echo '';
$data = '{
"touser":"'.$FromUserName.'",
"msgtype":"text",
"text":
{
"content":"'.$content_re.'"
}
}';
$url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=".$test_token;
$this->https_post($url, $data);

} else{
//2、模拟粉丝发送文本消息给专用测试公众号
$cOntentx= "TESTCOMPONENT_MSG_TYPE_TEXT_callback";
}
}

//1、模拟粉丝触发专用测试公众号的事件
if ($MsgType=="event") {
$array_e4 = $xml->getElementsByTagName('Event');
$event = $array_e4->item(0)->nodeValue;
$cOntentx= $event."from_callback";

}

 

效果:

 

检测

 

成功

到此全网发布完成

 


推荐阅读
author-avatar
常依sunrise
这个家伙很懒,什么也没留下!
Tags | 热门标签
RankList | 热门文章
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有