微信消息接口发送信息到分组和用户,错误代码40003和40008

微信消息接口发送信息到分组和用户,错误代码40003和40008调用高级群发接口 1 调用根据分组进行群发 返回错误代码 errcode 40008 errmsg invalid message type 错误原因 HTTP 请求提交的数据未进过 JSON 编码 注意下面代码中注释标明 正确和错误方式 的部分 调用代码如下 access token access token public function sentMsgToGro

调用高级群发接口:

1. 调用根据分组进行群发,返回错误代码:errcode:40008,errmsg:invalid message type

错误原因:HTTP请求提交的数据未进过JSON编码,注意下面代码中注释标明“正确和错误方式”的部分。

调用代码如下:

access_token = $access_token;     }     public function sentMsgToGroup()     {         // 根据分组进行群发【订阅号与服务号认证后均可用】         // http请求方式: POST         $url  = "https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=$this->access_token";         $data = array(             'filter' => array(                 'is_to_all' => false,                 'group_id' => 0             ),             'msgtype' => 'text',             'text' => array(                 'content' => 'this is test message with 中文!'             )         );         // JSON参数错误体检方式         // $res = json_decode($this -> httpPost($url, $data));         // JSON参数正确提交方式         $res = json_decode($this -> httpPost($url, json_encode($data, JSON_UNESCAPED_UNICODE)));         return $res;     }     private function httpPost($url, $data) {         $curl = curl_init();         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);         curl_setopt($curl, CURLOPT_TIMEOUT, 500);         curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);         curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);         curl_setopt($curl, CURLOPT_POST, 1);         curl_setopt($curl, CURLOPT_POSTFIELDS, $data);         curl_setopt($curl, CURLOPT_URL, $url);         $res = curl_exec($curl);         curl_close($curl);         return $res;   } } ?>

2. 调用根据OpenID列表群发,返回错误代码:errcode:40003,errmsg:invalid openid

错误原因:HTTP请求提交的数据未进过JSON编码,注意下面代码中注释标明“正确和错误方式”的部分。

调用代码如下:

access_token = $access_token;     }     public function sentMsgToOpenId()     {         // 根据分组进行群发【订阅号与服务号认证后均可用】         // http请求方式: POST         $url  = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=$this->access_token";         $data = array(             'touser' => 'oCECzv7gYSf4SCUrqYNPGL5JJI4M',             'msgtype' => 'text',             'text' => array(                 'content' => 'this is test message with 中文!'             )         );         // JSON参数错误体检方式         // $res = json_decode($this -> httpPost($url, $data));         // JSON参数正确提交方式         $res = json_decode($this -> httpPost($url, json_encode($data, JSON_UNESCAPED_UNICODE)));         return $res;     }     private function httpPost($url, $data) {         $curl = curl_init();         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);         curl_setopt($curl, CURLOPT_TIMEOUT, 500);         curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);         curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);         curl_setopt($curl, CURLOPT_POST, 1);         curl_setopt($curl, CURLOPT_POSTFIELDS, $data);         curl_setopt($curl, CURLOPT_URL, $url);         $res = curl_exec($curl);         curl_close($curl);         return $res;   } } ?>
编程小号
上一篇 2025-03-14 21:27
下一篇 2025-01-24 23:57

相关推荐

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/hz/115156.html