
给所有人群发,或者是根据标签群发
测试号没有权限得
- public ActionResult Index()
- {
- string token = AccessTokenTools.GetToken();
- string json = JsonConvert.SerializeObject(new
- {
- filter = new
- {
- is_to_all = true
- },
- text = new
- {
- content = "hello"
- },
- msgtype = "text"
- });
- HttpClient httpClient = new HttpClient();
- StringContent stringContent = new StringContent(json);
- string result = httpClient.PostAsync("https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=" + token, stringContent)
- .Result.Content.ReadAsStringAsync().Result;
-
- Response.Write(result);
- return View();
- }
预览接口
其他群发接口测试号都没有权限,预览接口可以成功
- public ActionResult Index()
- {
- string token = AccessTokenTools.GetToken();
-
- string json = JsonConvert.SerializeObject(new
- {
- touser = "用户的optionId",
- text = new
- {
- content = "hello"
- },
- msgtype = "text"
- });
-
- HttpClient httpClient = new HttpClient();
-
- StringContent stringContent = new StringContent(json);
-
- string result = httpClient.PostAsync("https://api.weixin.qq.com/cgi-bin/message/mass/preview?access_token=" + token, stringContent)
- .Result.Content.ReadAsStringAsync().Result;
-
- Response.Write(result);
-
-
- return View();
- }
欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)
评价
排名
8
文章
224
粉丝
7
评论
7
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:
50010702506256


欢迎加群交流技术