服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - C#微信公众平台开发之高级群发接口

C#微信公众平台开发之高级群发接口

2021-11-16 14:49秋荷雨翔 C#

这篇文章主要为大家详细介绍了C#微信公众平台开发之高级群发接口的相关资料,需要的朋友可以参考下

涉及access_token的获取请参考《c#微信公众平台开发之access_token的获取存储与更新》

一、为了实现高级群发功能,需要解决的问题

1、通过微信接口上传图文消息素材时,json中的图片不是url而是media_id,如何通过微信接口上传图片并获取图片的media_id?

2、图片存储在什么地方,如何获取?

二、实现步骤,以根据openid列表群发图文消息为例

1、准备数据

    我把数据存储在数据库中,imgurl字段是图片在服务器上的相对路径(这里的服务器是自己的服务器,不是微信的哦)。

C#微信公众平台开发之高级群发接口

从数据库中获取数据放到datatable中:

datatable dt = imgitemdal.getimgitemtable(loginuser.orgid, data);

2、通过微信接口上传图片,返回图片的media_id

 取imgurl字段数据,通过mappath方法获取图片在服务器上的物理地址,用filestream类读取图片,并上传给微信

http上传文件代码(httprequestutil类):

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/// <summary>
/// http上传文件
/// </summary>
public static string httpuploadfile(string url, string path)
{
 // 设置参数
 httpwebrequest request = webrequest.create(url) as httpwebrequest;
 cookiecontainer cookiecontainer = new cookiecontainer();
 request.cookiecontainer = cookiecontainer;
 request.allowautoredirect = true;
 request.method = "post";
 string boundary = datetime.now.ticks.tostring("x"); // 随机分隔线
 request.contenttype = "multipart/form-data;charset=utf-8;boundary=" + boundary;
 byte[] itemboundarybytes = encoding.utf8.getbytes("\r\n--" + boundary + "\r\n");
 byte[] endboundarybytes = encoding.utf8.getbytes("\r\n--" + boundary + "--\r\n");
 
 int pos = path.lastindexof("\\");
 string filename = path.substring(pos + 1);
 
 //请求头部信息
 stringbuilder sbheader = new stringbuilder(string.format("content-disposition:form-data;name=\"file\";filename=\"{0}\"\r\ncontent-type:application/octet-stream\r\n\r\n", filename));
 byte[] postheaderbytes = encoding.utf8.getbytes(sbheader.tostring());
 
 filestream fs = new filestream(path, filemode.open, fileaccess.read);
 byte[] barr = new byte[fs.length];
 fs.read(barr, 0, barr.length);
 fs.close();
 
 stream poststream = request.getrequeststream();
 poststream.write(itemboundarybytes, 0, itemboundarybytes.length);
 poststream.write(postheaderbytes, 0, postheaderbytes.length);
 poststream.write(barr, 0, barr.length);
 poststream.write(endboundarybytes, 0, endboundarybytes.length);
 poststream.close();
 
 //发送请求并获取相应回应数据
 httpwebresponse response = request.getresponse() as httpwebresponse;
 //直到request.getresponse()程序才开始向目标网页发送post请求
 stream instream = response.getresponsestream();
 streamreader sr = new streamreader(instream, encoding.utf8);
 //返回结果网页(html)代码
 string content = sr.readtoend();
 return content;
}

请求微信接口,上传图片,返回media_id(wxapi类):

?
1
2
3
4
5
6
7
8
9
/// <summary>
/// 上传媒体返回媒体id
/// </summary>
public static string uploadmedia(string access_token, string type, string path)
{
 // 设置参数
 string url = string.format("http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token={0}&type={1}", access_token, type);
 return httprequestutil.httpuploadfile(url, path);
}
?
1
2
string msg = wxapi.uploadmedia(access_token, "image", path); // 上图片返回媒体id
string media_id = tools.getjsonvalue(msg, "media_id");

传入的path(aspx.cs文件中的代码):

string path = mappath(data);

一个图文消息由若干条图文组成,每条图文有标题、内容、链接、图片等

遍历每条图文数据,分别请求微信接口,上传图片,获取media_id

3、上传图文消息素材

拼接图文消息素材json字符串(imgitemdal类(操作图文消息表的类)):

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/// <summary>
/// 拼接图文消息素材json字符串
/// </summary>
public static string getarticlesjsonstr(pagebase page, string access_token, datatable dt)
{
 stringbuilder sbarticlesjson = new stringbuilder();
 
 sbarticlesjson.append("{\"articles\":[");
 int i = 0;
 foreach (datarow dr in dt.rows)
 {
 string path = page.mappath(dr["imgurl"].tostring());
 if (!file.exists(path))
 {
  return "{\"code\":0,\"msg\":\"要发送的图片不存在\"}";
 }
 string msg = wxapi.uploadmedia(access_token, "image", path); // 上图片返回媒体id
 string media_id = tools.getjsonvalue(msg, "media_id");
 sbarticlesjson.append("{");
 sbarticlesjson.append("\"thumb_media_id\":\"" + media_id + "\",");
 sbarticlesjson.append("\"author\":\"" + dr["author"].tostring() + "\",");
 sbarticlesjson.append("\"title\":\"" + dr["title"].tostring() + "\",");
 sbarticlesjson.append("\"content_source_url\":\"" + dr["texturl"].tostring() + "\",");
 sbarticlesjson.append("\"content\":\"" + dr["content"].tostring() + "\",");
 sbarticlesjson.append("\"digest\":\"" + dr["content"].tostring() + "\",");
 if (i == dt.rows.count - 1)
 {
  sbarticlesjson.append("\"show_cover_pic\":\"1\"}");
 }
 else
 {
  sbarticlesjson.append("\"show_cover_pic\":\"1\"},");
 }
 i++;
 }
 sbarticlesjson.append("]}");
 
 return sbarticlesjson.tostring();
}

上传图文消息素材,获取图文消息的media_id:

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/// <summary>
/// 请求url,发送数据
/// </summary>
public static string posturl(string url, string postdata)
{
 byte[] data = encoding.utf8.getbytes(postdata);
 
 // 设置参数
 httpwebrequest request = webrequest.create(url) as httpwebrequest;
 cookiecontainer cookiecontainer = new cookiecontainer();
 request.cookiecontainer = cookiecontainer;
 request.allowautoredirect = true;
 request.method = "post";
 request.contenttype = "application/x-www-form-urlencoded";
 request.contentlength = data.length;
 stream outstream = request.getrequeststream();
 outstream.write(data, 0, data.length);
 outstream.close();
 
 //发送请求并获取相应回应数据
 httpwebresponse response = request.getresponse() as httpwebresponse;
 //直到request.getresponse()程序才开始向目标网页发送post请求
 stream instream = response.getresponsestream();
 streamreader sr = new streamreader(instream, encoding.utf8);
 //返回结果网页(html)代码
 string content = sr.readtoend();
 return content;
}
?
1
2
3
4
5
6
7
/// <summary>
/// 上传图文消息素材返回media_id
/// </summary>
public static string uploadnews(string access_token, string postdata)
{
 return httprequestutil.posturl(string.format("https://api.weixin.qq.com/cgi-bin/media/uploadnews?access_token={0}", access_token), postdata);
}
?
1
2
3
string articlesjson = imgitemdal.getarticlesjsonstr(this, access_token, dt);
string newsmsg = wxapi.uploadnews(access_token, articlesjson);
string newsid = tools.getjsonvalue(newsmsg, "media_id");

4、群发图文消息

获取全部关注者openid集合(wxapi类):

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/// <summary>
/// 获取关注者openid集合
/// </summary>
public static list<string> getopenids(string access_token)
{
 list<string> result = new list<string>();
 
 list<string> openidlist = getopenids(access_token, null);
 result.addrange(openidlist);
 
 while (openidlist.count > 0)
 {
 openidlist = getopenids(access_token, openidlist[openidlist.count - 1]);
 result.addrange(openidlist);
 }
 
 return result;
}
 
/// <summary>
/// 获取关注者openid集合
/// </summary>
public static list<string> getopenids(string access_token, string next_openid)
{
 // 设置参数
 string url = string.format("https://api.weixin.qq.com/cgi-bin/user/get?access_token={0}&next_openid={1}", access_token, string.isnullorwhitespace(next_openid) ? "" : next_openid);
 string returnstr = httprequestutil.requesturl(url);
 int count = int.parse(tools.getjsonvalue(returnstr, "count"));
 if (count > 0)
 {
 string startflg = "\"openid\":[";
 int start = returnstr.indexof(startflg) + startflg.length;
 int end = returnstr.indexof("]", start);
 string openids = returnstr.substring(start, end - start).replace("\"", "");
 return openids.split(',').tolist<string>();
 }
 else
 {
 return new list<string>();
 }
}

list<string> openidlist = wxapi.getopenids(access_token); //获取关注者openid列表
拼接图文消息json(wxmsgutil类):

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// <summary>
/// 图文消息json
/// </summary>
public static string createnewsjson(string media_id, list<string> openidlist)
{
 stringbuilder sb = new stringbuilder();
 sb.append("{\"touser\":[");
 sb.append(string.join(",", openidlist.convertall<string>(a => "\"" + a + "\"").toarray()));
 sb.append("],");
 sb.append("\"msgtype\":\"mpnews\",");
 sb.append("\"mpnews\":{\"media_id\":\"" + media_id + "\"}");
 sb.append("}");
 return sb.tostring();
}

群发代码:

?
1
2
3
4
5
6
7
8
9
10
resultmsg = wxapi.send(access_token, wxmsgutil.createnewsjson(newsid, openidlist));
 
 
/// <summary>
/// 根据openid列表群发
/// </summary>
public static string send(string access_token, string postdata)
{
 return httprequestutil.posturl(string.format("https://api.weixin.qq.com/cgi-bin/message/mass/send?access_token={0}", access_token), postdata);
}

供群发按钮调用的方法(data是传到页面的id,根据它从数据库中取数据):

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/// <summary>
/// 群发
/// </summary>
public string send()
{
 string type = request["type"];
 string data = request["data"];
 
 string access_token = adminutil.getaccesstoken(this); //获取access_token
 list<string> openidlist = wxapi.getopenids(access_token); //获取关注者openid列表
 userinfo loginuser = adminutil.getloginuser(this); //当前登录用户
 
 string resultmsg = null;
 
 //发送文本
 if (type == "1")
 {
 resultmsg = wxapi.send(access_token, wxmsgutil.createtextjson(data, openidlist));
 }
 
 //发送图片
 if (type == "2")
 {
 string path = mappath(data);
 if (!file.exists(path))
 {
  return "{\"code\":0,\"msg\":\"要发送的图片不存在\"}";
 }
 string msg = wxapi.uploadmedia(access_token, "image", path);
 string media_id = tools.getjsonvalue(msg, "media_id");
 resultmsg = wxapi.send(access_token, wxmsgutil.createimagejson(media_id, openidlist));
 }
 
 //发送图文消息
 if (type == "3")
 {
 datatable dt = imgitemdal.getimgitemtable(loginuser.orgid, data);
 string articlesjson = imgitemdal.getarticlesjsonstr(this, access_token, dt);
 string newsmsg = wxapi.uploadnews(access_token, articlesjson);
 string newsid = tools.getjsonvalue(newsmsg, "media_id");
 resultmsg = wxapi.send(access_token, wxmsgutil.createnewsjson(newsid, openidlist));
 }
 
 //结果处理
 if (!string.isnullorwhitespace(resultmsg))
 {
 string errcode = tools.getjsonvalue(resultmsg, "errcode");
 string errmsg = tools.getjsonvalue(resultmsg, "errmsg");
 if (errcode == "0")
 {
  return "{\"code\":1,\"msg\":\"\"}";
 }
 else
 {
  return "{\"code\":0,\"msg\":\"errcode:"
  + errcode + ", errmsg:"
  + errmsg + "\"}";
 }
 }
 else
 {
 return "{\"code\":0,\"msg\":\"type参数错误\"}";
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助。

延伸 · 阅读

精彩推荐
  • C#三十分钟快速掌握C# 6.0知识点

    三十分钟快速掌握C# 6.0知识点

    这篇文章主要介绍了C# 6.0的相关知识点,文中介绍的非常详细,通过这篇文字可以让大家在三十分钟内快速的掌握C# 6.0,需要的朋友可以参考借鉴,下面来...

    雨夜潇湘8272021-12-28
  • C#VS2012 程序打包部署图文详解

    VS2012 程序打包部署图文详解

    VS2012虽然没有集成打包工具,但它为我们提供了下载的端口,需要我们手动安装一个插件InstallShield。网上有很多第三方的打包工具,但为什么偏要使用微软...

    张信秀7712021-12-15
  • C#深入理解C#的数组

    深入理解C#的数组

    本篇文章主要介绍了C#的数组,数组是一种数据结构,详细的介绍了数组的声明和访问等,有兴趣的可以了解一下。...

    佳园9492021-12-10
  • C#C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    这篇文章主要介绍了C#设计模式之Strategy策略模式解决007大破密码危机问题,简单描述了策略模式的定义并结合加密解密算法实例分析了C#策略模式的具体使用...

    GhostRider10972022-01-21
  • C#利用C#实现网络爬虫

    利用C#实现网络爬虫

    这篇文章主要介绍了利用C#实现网络爬虫,完整的介绍了C#实现网络爬虫详细过程,感兴趣的小伙伴们可以参考一下...

    C#教程网11852021-11-16
  • C#C#微信公众号与订阅号接口开发示例代码

    C#微信公众号与订阅号接口开发示例代码

    这篇文章主要介绍了C#微信公众号与订阅号接口开发示例代码,结合实例形式简单分析了C#针对微信接口的调用与处理技巧,需要的朋友可以参考下...

    smartsmile20127762021-11-25
  • C#如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    这篇文章主要给大家介绍了关于如何使用C#将Tensorflow训练的.pb文件用在生产环境的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴...

    bbird201811792022-03-05
  • C#SQLite在C#中的安装与操作技巧

    SQLite在C#中的安装与操作技巧

    SQLite,是一款轻型的数据库,用于本地的数据储存。其优点有很多,下面通过本文给大家介绍SQLite在C#中的安装与操作技巧,感兴趣的的朋友参考下吧...

    蓝曈魅11162022-01-20