Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the function of sending messages in groups in the Development of Wechat Public platform

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Xiaobian shares with you how to realize the mass messaging function of WeChat public platform development. I believe most people still don't know much about it, so share this article for your reference. I hope you will gain a lot after reading this article. Let's find out together!

1. Purpose

Complete group messaging in Weixin Official Accounts. Here is just a simple text sent. You can also send voice pictures, etc., but the data format is different. There are links below to query the data transmission format of the data type.

2. The process of group SMS

Get a test public account (if you have an account, you don't need a test account, but there are more restrictions on official accounts)

Users follow the public accounts above

Get our access_token via appid and appsecret

Group SMS via access_token

3. Get the test public account + pay attention to the public account

1) Public test account acquisition

Visit the link above and select "Interface Test Number Request" to get directly opened mp.weixin.qq.com/debug/cgi-bin/sandboxinfo? action=showinfo&t=sandbox/index Login via WeChat client code scanning.

After logging in, you can get information about a test public account. There are mainly two parameters appId and appsecret, which will uniquely identify a public number and need to use them as parameters to obtain user information.

2) Configuration interface information

This step can refer to WeChat access instructions, this page provides an instance of php download, very simple basically modify the custom TOKEN is good, and then put the verification page on your own server.

Here's an example of what I did:

Prepare resources:

Domain + space (mine is sae space + Wanwang domain name), php file for verification only

I created a wx_sample.php file in the root directory of the domain.

wx_sample.php

Then fill in the configuration information Token (must be consistent with the token in wx_sample.php above), URL (address of wx_sample.php)

And then submit it.

If the prompt fails, please check the Token and URL [If it is your own domain name and space, please file it; Baidu sae, Sina sae need to apply for it yourself and pass the authentication (that is, you take a hand-held ID photo to upload, very simple minimum 2 days o), this step must]

3) Configure JS interface security domain name

Please fill in this domain name without protocol, for example http://www.sagosoft.com/; this is wrong, this is URL not domain name

The domain name should be something like www.sagosoft.com [otherwise it will prompt invalid url domain when accessing WeChat js-sdk]

4) Pay attention to the public number

Only when the user pays attention to this public number can he authorize a third party to log in and obtain user information by opening a link with public number information. Therefore, we also need to use our WeChat attention micro-signal, the operation is as follows:

It's still the page that jumped after successful login. We can see that this page has a two-dimensional code. We can pay attention to it by scanning the two-dimensional code. If we pay attention to the "user list" on the right, there will be one more user's information. As shown below:

5)配置回调函数

我们在微信客户端访问第三方网页(即我们自己的网页)的时候,我们可以通过微信网页授权机制,我们不仅要有前面获取到的appid和appsecret还需要有当用户授权之后,回调的域名设置,即用户授权后,页面会跳转到哪里。具体的配置如下:

还是在刚刚的页面,有一个"网页授权获取用户基本信息",点击后面的修改

填写回调的域名:

域名是上面配置的根域名,假如你上面 "接口配置信息" 填写的url 为zcr.sinaaappc.com/wx_sample.php,这里只要填写zcr.sinaaappc.com 就可以了。

如果你的网址没有被列入过黑名单,就会在顶部出现

注意:

1、这里填写的是域名(是一个字符串),而不是URL,因此请勿加http://等协议头;

2、授权回调域名配置规范为全域名,比如需要网页授权的域名为:www.qq.com,配置以后此域名下面的页面http://www.qq.com/music.html 、 http://www.qq.com/login.html 都可以进行OAuth3.0鉴权。但ttp://pay.qq.com 、http://music.qq.com 、 http://qq.com无法进行OAuth3.0鉴权

到这里,我们就完成了公众号测试账号的获取和配置,已经用户关注微信公众号。

4、通过appid和appsecret获取我们的access_token

access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token。开发者需要进行妥善保存。access_token的存储至少要保留512个字符空间。access_token的有效期目前为2个小时,需定时刷新,重复获取将导致上次获取的access_token失效。

获取方法:

http请求方式: GET

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET

参数说明

参数是否必须说明grant_type是获取access_token填写client_credentialappid是第三方用户唯一凭证secret是第三方用户唯一凭证密钥,即appsecret

返回说明

正常情况下,微信会返回下述JSON数据包给公众号:

{"access_token":"ACCESS_TOKEN","expires_in":7200}

参数说明access_token获取到的凭证expires_in凭证有效时间,单位:秒

错误时微信会返回错误码等信息,JSON数据包示例如下(该示例为AppID无效错误):

{"errcode":40013,"errmsg":"invalid appid"}

例子:

获取access_token:

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wx41cb8dbd827a16e9&secret=d4624c36b6795d1d99dcf0547af5443d

返回数据:

{ "access_token": "qR5UK2vMf5aTHV8e-uB10FZW0caTZm_1kbkUe4OPK2ILVvNaoa7pLzYWqLUAmx6Sjq1E7pKHrVAtuG0_1MPkqmDfOkm2750kaLWNk59DS-iDOpjjxompJtXa3WhbN5FKRWNhADAVAR", "expires_in": 7200}

5、通过access_token群发短信

在公众平台网站上,为订阅号提供了每天一条的群发权限,为服务号提供每月(自然月)4条的群发权限。而对于某些具备开发能力的公众号运营者,可以通过高级群发接口,实现更灵活的群发能力。

请注意:

1、对于认证订阅号,群发接口每天可成功调用1次,此次群发可选择发送给全部用户或某个分组;

2、对于认证服务号虽然开发者使用高级群发接口的每日调用限制为100次,但是用户每月只能接收4条,无论在公众平台网站上,还是使用接口群发,用户每月只能接收4条群发消息,多于4条的群发将对该用户发送失败;

3、具备微信支付权限的公众号,在使用群发接口上传、群发图文消息类型时,可使用标签加入外链;

4、开发者可以使用预览接口校对消息样式和排版,通过预览接口可发送编辑好的消息给指定用户校验效果。

1)根据分组进行群发【订阅号与服务号认证后均可用】

调用接口:

http请求方式: POST

https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=ACCESS_TOKEN 在body添加如下数据(以JSON格式数据发送)--发送其他格式数据,只需要改里面参数信息即可,具体可查看微信官方文档:

{ "filter":{ "is_to_all":false, "group_id":2 }, "text":{ "content":"CONTENT" }, "msgtype":"text"}

参数说明:

参数是否必须说明filter是用于设定图文消息的接收者is_to_all否用于设定是否向全部用户发送,值为true或false,选择true该消息群发给所有用户,选择false可根据group_id发送给指定群组的用户group_id否群发到的分组的group_id,参加用户管理中用户分组接口,若is_to_all值为true,可不填写group_idmpnews是用于设定即将发送的图文消息media_id是用于群发的消息的media_idmsgtype是群发的消息类型,图文消息为mpnews,文本消息为text,语音为voice,音乐为music,图片为image,视频为video,卡券为wxcardtitle否消息的标题description否消息的描述thumb_media_id是视频缩略图的媒体ID

例子:发送给所有人

url:

https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=KBoNONaJZ4-KhafQVJoQ6VBX0F-bls7nAsJBn8Fy7GLwav4Be1lRJcob1RHH6wW35IxxFwkJnZfnc-On9EQITg3oxEWUw7O2YyVW9naDknu6PQX9fnSmQcr8ojTK8Ug-HDTcAAABXN

发送的json数据:发送给所有人

{ "filter":{ "is_to_all":true }, "text":{ "content":"CONTENT" }, "msgtype":"text"}

返回数据:

{ "errcode": 0, "errmsg": "send job submission success", "msg_id": 1000000003}

参数意义:

参数说明type媒体文件类型,分别有图片(image)、语音(voice)、视频(video)和缩略图(thumb),图文消息为newserrcode错误码errmsg错误信息msg_id消息发送任务的IDmsg_data_id消息的数据ID,该字段只有在群发图文消息时,才会出现。可以用于在图文分析数据接口中,获取到对应的图文消息的数据,是图文分析数据接口中的msgid字段中的前半部分,详见图文分析数据接口中的msgid字段的介绍。

错误码及其以及查询:

使用postman模拟https请求发送如下图所示:

2)根据OpenID列表群发【订阅号不可用,服务号认证后可用】

发送的http请求url:(注意:和上面的不同)

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."}}

其中 OPENID1和OPENID2是我们要发送的微信用户openId(用户的唯一标示)。

例子:

发送"oF3PcsnsrMiJzEwalZZbAfWQpxCI","oF3PcshH1CUIhR_WYau6swUiPzlw" 两个用户。

内容为:hello from boxer.欢迎来到百度

url:

https://api.weixin.qq.com/cgi-bin/message/mass/send?access_token=wRyTbnsiu18ssEhMPLf4bDfeT-Bt6e6tgR4CQGVLBipRcyJPkdAKPYfM6-qkKuHUN8uRKJh7Xvm0OuAdFgqOo8Ru8hoDxl-cGc9bh-ezJb2ZUcJSnQk2s416zI8kbEOfOGYdAFARJB

json数据:

{ "touser":[ "oF3PcsnsrMiJzEwalZZbAfWQpxCI", "oF3PcshH1CUIhR_WYau6swUiPzlw" ], "msgtype": "text", "text": { "content": "hello from boxer.欢迎希沃学院"}}

返回数据:

{ "errcode": 0, "errmsg": "send job submission success", "msg_id": 3147483654}

使用postman模拟发送请求如下:

微信号接收到的内容:

以上是"微信公众平台开发之如何实现群发信息功能"这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report