C#微信开发之发送模板消息
程序员文章站
2023-11-29 12:20:28
我们需要将一些行为的进展消息推送给用户。除了短信,发送微信模板消息也是不错的选择。模板消息免费、精准到达、而且可以引导用户回到网站上来。但它有两个前提条件。1个是必须开通了...
我们需要将一些行为的进展消息推送给用户。除了短信,发送微信模板消息也是不错的选择。模板消息免费、精准到达、而且可以引导用户回到网站上来。但它有两个前提条件。1个是必须开通了微信支付功能,你才能选择模板。2个是被推送的用户必须关注了你的公众号,而且你也拿到了他的openid。
先在模板库中找到自己的想要的模板,添加到“我的模板”中。
展开详情,我们可以看到示例。接下来用c#代码发送一次:
从官方文档的示例中我们可以看到除了推送人的openid,还可以设置每个字段的颜色及跳转地址。先可以定义以个tempmodel对象:
public class templatemodel { public string touser { get; set; } public string template_id { get; set; } public string url { get; set; } public string topcolor { get; set; } public templatedata data { get; set; } public templatemodel(string hello,string state,string reason,string last) { data=new templatedata() { first = new tempitem(hello), keyword1 = new tempitem(state), keyword2 = new tempitem(reason), remark = new tempitem(last) }; } } public class templatedata { public tempitem first { get; set; } public tempitem keyword1 { get; set; } public tempitem keyword2 { get; set; } public tempitem remark { get; set; } } public class tempitem { public tempitem(string v,string c = "#173177") { value = v; color = c; } public string value { get; set; } public string color { get; set; } }
还有一个返回结果对象:
public class openapiresult { public int error_code { get; set; } public string error_msg { get; set; } public string msg_id { get; set; } }
然后定义一个发送方法:
using sendhelp= senparc.weixin.commonapis.commonjsonsend; public openapiresult sendtemplatemessage(string token,templatemodel model) { var url = string.format("https://api.weixin.qq.com/cgi-bin/message/template/send?access_token={0}", token); try { var res = sendhelp.send<openapiresult>(token, url, model); return res; } catch (exception e) { return new openapiresult(){error_code = -1,error_msg = e.message}; } }
sendhelp是基于senparac.weixin 最后就可以调用了:
public actionresult sendmessage() { var token = gettoken(); var touserid = "obsbmwqjqwjfzqlksfnjxflsiiqm"; var data = new templatemodel("你好,stoneniqiu","审核通过","资料完整","祝你生活幸福!"); data.touser = touserid; data.template_id = "gxmkel7kc-kuy2eqzkqjpky-kzfyattztiyfkcaupo4"; data.url = "http://www.xxx.com/xx/xx"; data.topcolor = "#ff0000"; var res=wxdeviceservice.sendtemplatemessage(token, data); return view(res); }
token即通过appid和appsecret获取。发送之后,手机上马上收到消息。
但如果你只是拿到了用户的openid,但该用户没有关注公众号,发送时会抛出下面的错误:
其他信息: 微信post请求发生错误!错误代码:43004,说明:require subscribe hint: [q2ofva0092ge21]
相关部分代码:
官方文档:https://mp.weixin.qq.com/advanced/tmplmsg?action=faq&token=1798469214&lang=zh_cn
全部错误类型:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。