微信群发接口,预览接口测试号可用
电脑版发表于:2021/12/8 10:40
给所有人群发,或者是根据标签群发
测试号没有权限得
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();
}