模板消息
参考:https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Template_Message_Interface.html
首先我们获取access_token:
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=xxx&secret=xxx
目前暂时没有模板消息这个权限,先跳过。。
根据Openid列表群发
首先我们需要获取所有的用户openid
然后根据我们获取到的openid可以获取用户信息
https://api.weixin.qq.com/cgi-bin/user/info?access_token=xxx&openid=xxx8&lang=zh_CN
我们只发送一个简单的文本消息:
http请求方式: POST https://api.weixin.qq.com/cgi-bin/message/mass/send?access_token=ACCESS_TOKEN
{
"touser":[
"OPENID1",
"OPENID2"
],
"msgtype": "text",
"text": { "content": "hello from boxer."}
}