public function massSend(){
// $postField=‘{
// "filter":{
// "group_id":"0"
//},
// "text":{
// "content":"您有一个新咨询,请您及时处理"
// },
// "msgtype":"text"
//}‘;
$postField=‘{
"filter":{
"is_to_all":false
"group_id":"2"
},
"text":{
"content":"CONTENT"
},
"msgtype":"text"
}‘;
$url= ‘https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=‘.$this->ACCESS_TOKEN;//群发消息接口
$ret=$this->JsonPost($url, json_encode($postField));
echo json_encode($ret);
}
时间: 2024-11-03 21:08:40