wx3.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. //验证signature
  3. //$signature = $_GET["signature"];
  4. //$timestamp = $_GET["timestamp"];
  5. //$nonce = $_GET["nonce"];
  6. //$echostr=$_GET["echostr"];
  7. //
  8. //$token = TOKEN;//这里改成你第一步操作时填写的token
  9. //$tmpArr = array($token, $timestamp, $nonce);
  10. //sort($tmpArr, SORT_STRING);
  11. //$tmpStr = implode( $tmpArr );
  12. //$tmpStr = sha1( $tmpStr );
  13. //
  14. //if ($tmpStr == $signature ) {
  15. // return $echostr;
  16. //} else {
  17. // return false;
  18. //}
  19. //处理用户发送的信息
  20. include_once './Xcxmsg.php';
  21. $xcxmsg = new Xcxmsg();
  22. $postStr = file_get_contents('php://input');
  23. if (!$postStr)
  24. return false;
  25. $postArr = json_decode($postStr, true);
  26. if (!isset($postArr['MsgType']) || !isset($postArr['FromUserName']))
  27. return false;
  28. $data = ["touser" => $postArr['FromUserName']];
  29. $date['AppID'] = 'wx3cfbc521f6537439';
  30. $date['AppSecret'] = 'c2ed0c450d8071eae35e683a054f6049';
  31. $accessToken = $xcxmsg->getAccessToken($date);
  32. $url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=" . $accessToken;
  33. switch ($postArr['MsgType']) {
  34. case "text":
  35. //如用户发送的是文字信息,这里处理
  36. //回复图文链接,也可以回复别的类型,根据需要
  37. $data['msgtype'] = "link";
  38. $data['link'] = [
  39. "title" => "hello",
  40. "description" => "Is Really A Happy Day",
  41. "url" => "LINK_URL",//连接url
  42. "thumb_url" => "THUMB_URL" //图片url
  43. ];
  44. $json = json_encode($data, JSON_UNESCAPED_UNICODE);
  45. $xcxmsg->curl($json, $url);
  46. break;
  47. case "image": //如用户发送图片消息,进入这里
  48. $img['image'] = "/upload/20200901/71c6b50cac917f080c2adb7d98817813.png";
  49. $media_id = $xcxmsg->upload($img);
  50. //服务端回复 图片,也可以回复别的类型,根据需要
  51. $data['msgtype'] = "image";
  52. $data['image'] = ['media_id' => $media_id]; // 执行 $xcxmsg->upload($accessToken)返回的 media_id
  53. $json = json_encode($data, JSON_UNESCAPED_UNICODE);
  54. $xcxmsg->curl($json, $url);
  55. case "miniprogrampage":
  56. //如用户发送小程序卡片,进入这里
  57. //这里服务端回复小卡片,也可以回复别的类型,根据需要
  58. $data['msgtype'] = "miniprogrampage";
  59. $data['miniprogrampage'] = [
  60. "title" => "title",
  61. "pagepath" => "pages/index/index",
  62. "thumb_media_id" => "media_id值"];// 执行 $xcxmsg->upload($accessToken)返回的 media_id
  63. $json = json_encode($data, JSON_UNESCAPED_UNICODE);
  64. $xcxmsg->curl($json, $url);
  65. break;
  66. case "event":
  67. //如用户进入会话事件
  68. //这里可以回复文本
  69. $data['msgtype'] = "text";
  70. $data['text'] = [
  71. "content" => "Hello World",
  72. ];
  73. $json = json_encode($data, JSON_UNESCAPED_UNICODE);
  74. $xcxmsg->curl($json, $url);
  75. break;
  76. default:
  77. }