search
HomeBackend DevelopmentPHP Tutorialjavascript - WeChat Enterprise Account: How to POST JSON data to send messages to Enterprise Account members

According to the message data format of the message sending interface in the Enterprise Account developer documentation, if you want to send messages to Enterprise Account members, you must use POST to send JSON data to the specified URL containing ACCESS_TOKEN.

What I want to achieve is to query the database at regular intervals and then send messages to specific members based on the query results.

I can successfully POST JSON data by writing the curl command on the shell of my Linux server. I also received a message on my mobile phone, indicating that there is no problem with my understanding of the document and the data format. However, this method must put the obtained ACCESS_TOKEN HARD CODE into the command line, and TOKEN is time-limited, so it can only be used for testing and cannot be used in a production environment.

In a production environment, my solution is to write a PHP/JAVASCRIPT program to send messages, and then use CRON JOB to execute the PHP program regularly on the server side. However, due to insufficient understanding of the POST principle, many problems were encountered during the specific implementation process.

First of all, if we only consider feasibility, can it be implemented using jQuery’s ajax method?
In my experiment, I first used PHP to get the correct TOKEN, constructed the URL, and then passed the URL value to the javascript variable url, and tried it in the console

<code>$.ajax({
  type: "POST",
  url: url,
  data: '{"touser":"Jacklyn","msgtype":"text","agentid":23,"text":{"content":"test message"}}',
  success: function(){},
  dataType: "json",
  contentType : "application/json"
});
</code>

The console returned a cross domain error. I understand that because of the cross domain problem, I cannot see the success or failure information returned
javascript - WeChat Enterprise Account: How to POST JSON data to send messages to Enterprise Account members

But I didn’t receive any message on my phone, so the sending should have failed. In order to see what data the above code sends, I use another file to receive the data:

<code><?php echo '<pre class="brush:php;toolbar:false">';
  var_dump($_POST);
  echo "</code>
"; ?>

But in the object .responsText returned by $.ajax, you can see that the result of POST is

array(0) {}

If I remove the datetype and contenttype in the AJAX method, I can see the correct data in responseText. So, the first question is, if the JSON format data sent by $.ajax cannot be received by $_POST, how should the sent data be read on the server side?

In addition, I read some documents about POST. If I understand it correctly, the information transmitted by POST actually consists of two parts, one is HEADER and the other is DATA. I also searched for some information about how to POST JSON through PHP. I don’t understand the data articles very well. It seems that most of the articles say that you need to control the HEADER to a certain extent before you can POST JSON. Does this mean that it can’t be achieved with javascript?

Finally, I use the following function

<code>function gotoUrl(path, params, method) {
  //Null check
  method = method || "post"; // Set method to post by default if not specified.

  // The rest of this code assumes you are not using a library.
  // It can be made less wordy if you use one.
  var form = document.createElement("form");
  form.setAttribute("method", method);
  form.setAttribute("action", path);

  //Fill the hidden form
  if (typeof params === 'string') {
      var hiddenField = document.createElement("input");
      hiddenField.setAttribute("type", "hidden");
      hiddenField.setAttribute("name", 'data');
      hiddenField.setAttribute("value", params);
      form.appendChild(hiddenField);
  }
  else {
      for (var key in params) {
          if (params.hasOwnProperty(key)) {
              var hiddenField = document.createElement("input");
              hiddenField.setAttribute("type", "hidden");
              hiddenField.setAttribute("name", key);
              if(typeof params[key] === 'object'){
                  hiddenField.setAttribute("value", JSON.stringify(params[key]));
              }
              else{
                  hiddenField.setAttribute("value", params[key]);
              }
              form.appendChild(hiddenField);
          }
      }
  }

  document.body.appendChild(form);
  form.submit();
}
</code>

Simulate a form to submit data, and then I try

<code>gotoUrl(url,'{"touser":"shenkwen","msgtype":"text","agentid":23,"text":{"content":"test message"}}')

给url加上一个debug=1参数的话,可以看到postdata,以上代码的postdata是这样的:
</code>

data={"touser":"shenkwen","msgtype":"text","agentid":23,"text":{"content":"test message"}}

It seems that the json string has been urlencoded. Does this mean that the json data required in this situation cannot be submitted through the form at all?

Reply content:

According to the message data format of the message sending interface in the Enterprise Account developer documentation, if you want to send messages to Enterprise Account members, you must use POST to send JSON data to the specified URL containing ACCESS_TOKEN.

What I want to achieve is to query the database at regular intervals and then send messages to specific members based on the query results.

I can successfully POST JSON data by writing the curl command on the shell of my Linux server. I also received a message on my mobile phone, indicating that there is no problem with my understanding of the document and the data format. However, this method must put the obtained ACCESS_TOKEN HARD CODE into the command line, and TOKEN is time-limited, so it can only be used for testing and cannot be used in a production environment.

In a production environment, my solution is to write a PHP/JAVASCRIPT program to send messages, and then use CRON JOB to execute the PHP program regularly on the server side. However, due to insufficient understanding of the POST principle, many problems were encountered during the specific implementation process.

First of all, if we only consider feasibility, can it be implemented using jQuery’s ajax method?
In my experiment, I first used PHP to get the correct TOKEN, constructed the URL, and then passed the URL value to the javascript variable url, and tried it in the console

<code>$.ajax({
  type: "POST",
  url: url,
  data: '{"touser":"Jacklyn","msgtype":"text","agentid":23,"text":{"content":"test message"}}',
  success: function(){},
  dataType: "json",
  contentType : "application/json"
});
</code>

The console returned a cross domain error. I understand that because of the cross domain problem, I cannot see the success or failure information returned
javascript - WeChat Enterprise Account: How to POST JSON data to send messages to Enterprise Account members

But I didn’t receive any message on my phone, so the sending should have failed. In order to see what data is sent by the above code, I use another file to receive the data:

<code><?php echo '<pre class="brush:php;toolbar:false">';
  var_dump($_POST);
  echo "</code>
"; ?>

But in the object .responsText returned by $.ajax, you can see that the result of POST is

array(0) {}

如果我把AJAX方法中的datetype和contenttype去掉,在responseText中就能看到正确的数据。所以,第一个问题是,如果$.ajax发送的JSON格式的数据不能被$_POST接收到,在服务器端应如何读取发送的数据呢?

此外,我读了一些关于POST的文档,如果没有理解错的话,实际上POST传递的信息由两部分组成,一是HEADER,一是DATA;我也搜寻了一些关于如何通过PHP POST JSON数据的文章,读的不是很懂,似乎大部分文章都是说要先对HEADER进行一定程度的控制,然后才能POST JSON,这是不是意味着用javascript就无法实现呢?

最后,我用以下函数

<code>function gotoUrl(path, params, method) {
  //Null check
  method = method || "post"; // Set method to post by default if not specified.

  // The rest of this code assumes you are not using a library.
  // It can be made less wordy if you use one.
  var form = document.createElement("form");
  form.setAttribute("method", method);
  form.setAttribute("action", path);

  //Fill the hidden form
  if (typeof params === 'string') {
      var hiddenField = document.createElement("input");
      hiddenField.setAttribute("type", "hidden");
      hiddenField.setAttribute("name", 'data');
      hiddenField.setAttribute("value", params);
      form.appendChild(hiddenField);
  }
  else {
      for (var key in params) {
          if (params.hasOwnProperty(key)) {
              var hiddenField = document.createElement("input");
              hiddenField.setAttribute("type", "hidden");
              hiddenField.setAttribute("name", key);
              if(typeof params[key] === 'object'){
                  hiddenField.setAttribute("value", JSON.stringify(params[key]));
              }
              else{
                  hiddenField.setAttribute("value", params[key]);
              }
              form.appendChild(hiddenField);
          }
      }
  }

  document.body.appendChild(form);
  form.submit();
}
</code>

模拟一个表单提交数据,然后我尝试

<code>gotoUrl(url,'{"touser":"shenkwen","msgtype":"text","agentid":23,"text":{"content":"test message"}}')

给url加上一个debug=1参数的话,可以看到postdata,以上代码的postdata是这样的:
</code>

data=%7B%22touser%22%3A%22shenkwen%22%2C%22msgtype%22%3A%22text%22%2C%22agentid%22%3A23%2C%22text%22%3A%7B%22content%22%3A%22test+message%22%7D%7D

看起来是把json字符串urlencode了,这是不是意味着在这个场合中所要求的json数据根本无法用表单方式提交?

contentType也可以指定为 urlencode的。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.