版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/xiao_hu520/article/details/79727933

 

折腾了几个小时,终于通过了全网发布接入检测,进入审核阶段,半个小时之后审核通过。

https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1419318611&lang=zh_CN

这个是官方链接,不知是我看走眼了,还是官方写的模模糊糊,总之网上查阅了不少资料才明白了思路。

好了,进入正题……

1、为了不必要的麻烦,我直接把官方给定的测试公众号、测试小程序的原始ID加入了白名单里。

 

2、由于我是开发小程序,这里创建小程序第三方平台时勾选的权限集,根据官方的意思,如果勾选了消息这类权限,就要多弄一些检测。

3、根据官方文档步骤,我最终只实现了两步便成功通过全网发布接入检测。

并且所有检测代码都在“消息与事件接收URL”的URL中完成。顺便说下小程序业务域名是指在web-view组件中承载网页的外链。

 

第一步:采用自动回复文本的方式

第二步:使用客服消息接口发送消息

全部代码如下:

  1. /**
  2. * 消息与事件接收URL
  3. */
  4. public function receiveEvent()
  5. {
  6. // 每个授权小程序的appid,在第三方平台的消息与事件接收URL中设置了 $APPID$
  7. $authorizer_appid = I('param.appid/s');
  8. // 每个授权小程序传来的加密消息
  9. $postStr = file_get_contents("php://input");
  10. if (!empty($postStr)){
  11. $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
  12. $toUserName = trim($postObj->ToUserName);
  13. $encrypt = trim($postObj->Encrypt);
  14. $format = "<xml><ToUserName><![CDATA[{$toUserName}]]></ToUserName><Encrypt><![CDATA[%s]]></Encrypt></xml>";
  15. $from_xml = sprintf($format, $encrypt);
  16. $inputs = array(
  17. 'encrypt_type' => '',
  18. 'timestamp' => '',
  19. 'nonce' => '',
  20. 'msg_signature' => '',
  21. 'signature' => ''
  22. );
  23. foreach ($inputs as $key => $value) {
  24. $tmp = $_REQUEST[$key];
  25. if (!empty($tmp)){
  26. $inputs[$key] = $tmp;
  27. }
  28. }
  29. // 第三方收到公众号平台发送的消息
  30. $msg = '';
  31. $timeStamp = $inputs['timestamp'];
  32. $msg_sign = $inputs['msg_signature'];
  33. $nonce = $inputs['nonce'];
  34. $token = 'xxxxxxxxxxx';
  35. $encodingAesKey = 'xxxxxxxxxxxxxxxx';
  36. $appid = 'xxxxxxxx';
  37. $appsecret = 'xxxxxxxxxxxxxx';
  38. vendor('minicrypto.wxBizMsgCrypt');
  39. $pc = new \WXBizMsgCrypt($token, $encodingAesKey, $appid);
  40. $errCode = $pc->decryptMsg($msg_sign, $timeStamp, $nonce, $from_xml, $msg);
  41. if ($errCode == 0) {
  42. $msgObj = simplexml_load_string($msg, 'SimpleXMLElement', LIBXML_NOCDATA);
  43. $content = trim($msgObj->Content);
  44. //第三方平台全网发布检测普通文本消息测试
  45. if (strtolower($msgObj->MsgType) == 'text' && $content == 'TESTCOMPONENT_MSG_TYPE_TEXT') {
  46. $toUsername = trim($msgObj->ToUserName);
  47. if ($toUsername == 'gh_3c884a361561') {
  48. $content = 'TESTCOMPONENT_MSG_TYPE_TEXT_callback';
  49. echo $this->responseText($msgObj, $content);
  50. }
  51. }
  52. //第三方平台全网发布检测返回api文本消息测试
  53. if (strpos($content, 'QUERY_AUTH_CODE') !== false) {
  54. $toUsername = trim($msgObj->ToUserName);
  55. if ($toUsername == 'gh_3c884a361561') {
  56. $query_auth_code = str_replace('QUERY_AUTH_CODE:', '', $content);
  57. $params = $this->dedeLogic->api_query_auth($query_auth_code);
  58. $authorizer_access_token = $params['authorization_info']['authorizer_access_token'];
  59. $content = "{$query_auth_code}_from_api";
  60. $this->sendServiceText($msgObj, $content, $authorizer_access_token);
  61. }
  62. }
  63. // file_put_contents ( ROOT_PATH."/log.txt", date ( "Y-m-d H:i:s" ) . " " . var_export($msgObj,true) . "\r\n", FILE_APPEND );
  64. }
  65. }
  66. echo "success";
  67. }
  68. /**
  69. * 自动回复文本
  70. */
  71. public function responseText($object = '', $content = '')
  72. {
  73. if (!isset($content) || empty($content)){
  74. return "";
  75. }
  76. $xmlTpl = "<xml>
  77. <ToUserName><![CDATA[%s]]></ToUserName>
  78. <FromUserName><![CDATA[%s]]></FromUserName>
  79. <CreateTime>%s</CreateTime>
  80. <MsgType><![CDATA[text]]></MsgType>
  81. <Content><![CDATA[%s]]></Content>
  82. </xml>";
  83. $result = sprintf($xmlTpl, $object->FromUserName, $object->ToUserName, time(), $content);
  84. return $result;
  85. }
  86. /**
  87. * 发送文本消息
  88. */
  89. public function sendServiceText($object = '', $content = '', $access_token = '')
  90. {
  91. /* 获得openId值 */
  92. $openid = (string)$object->FromUserName;
  93. $post_data = array(
  94. 'touser' => $openid,
  95. 'msgtype' => 'text',
  96. 'text' => array(
  97. 'content' => $content
  98. )
  99. );
  100. $this->sendMessages($post_data, $access_token);
  101. }
  102. /**
  103. * 发送消息-客服消息
  104. */
  105. public function sendMessages($post_data = array(), $access_token = '')
  106. {
  107. $url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token={$access_token}";
  108. httpRequest($url, 'POST', json_encode($post_data, JSON_UNESCAPED_UNICODE));
  109. }
  110. /**
  111. * CURL请求
  112. * @param $url 请求url地址
  113. * @param $method 请求方法 get post
  114. * @param null $postfields post数据数组
  115. * @param array $headers 请求header信息
  116. * @param bool|false $debug 调试开启 默认false
  117. * @return mixed
  118. */
  119. function httpRequest($url, $method="GET", $postfields = null, $headers = array(), $debug = false) {
  120. $method = strtoupper($method);
  121. $ci = curl_init();
  122. /* Curl settings */
  123. curl_setopt($ci, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
  124. curl_setopt($ci, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0");
  125. curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, 60); /* 在发起连接前等待的时间,如果设置为0,则无限等待 */
  126. curl_setopt($ci, CURLOPT_TIMEOUT, 7); /* 设置cURL允许执行的最长秒数 */
  127. curl_setopt($ci, CURLOPT_RETURNTRANSFER, true);
  128. switch ($method) {
  129. case "POST":
  130. curl_setopt($ci, CURLOPT_POST, true);
  131. if (!empty($postfields)) {
  132. $tmpdatastr = is_array($postfields) ? http_build_query($postfields) : $postfields;
  133. curl_setopt($ci, CURLOPT_POSTFIELDS, $tmpdatastr);
  134. }
  135. break;
  136. default:
  137. curl_setopt($ci, CURLOPT_CUSTOMREQUEST, $method); /* //设置请求方式 */
  138. break;
  139. }
  140. $ssl = preg_match('/^https:\/\//i',$url) ? TRUE : FALSE;
  141. curl_setopt($ci, CURLOPT_URL, $url);
  142. if($ssl){
  143. curl_setopt($ci, CURLOPT_SSL_VERIFYPEER, FALSE); // https请求 不验证证书和hosts
  144. curl_setopt($ci, CURLOPT_SSL_VERIFYHOST, FALSE); // 不从证书中检查SSL加密算法是否存在
  145. }
  146. //curl_setopt($ci, CURLOPT_HEADER, true); /*启用时会将头文件的信息作为数据流输出*/
  147. curl_setopt($ci, CURLOPT_FOLLOWLOCATION, 1);
  148. curl_setopt($ci, CURLOPT_MAXREDIRS, 2);/*指定最多的HTTP重定向的数量,这个选项是和CURLOPT_FOLLOWLOCATION一起使用的*/
  149. curl_setopt($ci, CURLOPT_HTTPHEADER, $headers);
  150. curl_setopt($ci, CURLINFO_HEADER_OUT, true);
  151. /*curl_setopt($ci, CURLOPT_COOKIE, $Cookiestr); * *COOKIE带过去** */
  152. $response = curl_exec($ci);
  153. $requestinfo = curl_getinfo($ci);
  154. $http_code = curl_getinfo($ci, CURLINFO_HTTP_CODE);
  155. if ($debug) {
  156. echo "=====post data======\r\n";
  157. var_dump($postfields);
  158. echo "=====info===== \r\n";
  159. print_r($requestinfo);
  160. echo "=====response=====\r\n";
  161. print_r($response);
  162. }
  163. curl_close($ci);
  164. return $response;
  165. //return array($http_code, $response,$requestinfo);
  166. }

 

 

 

 

最后更新于 2020年5月17日

微信小程序第三方平台开发【全网发布及全网发布接入检测】