我們需要將一些行為的進展消息推送給用戶。除了短信,發送微信模板消息也是不錯的選擇。模板消息免費、精準到達、而且可以引導用戶回到網站上來。但它有兩個前提條件。1個是必須開通了微信支付功能,你才能選擇模板。2個是被推送的用戶必須關注了你的公眾號,而且你也拿到了他的openid。
先在模板庫中找到自己的想要的模板,添加到“我的模板”中。
展開詳情,我們可以看到示例。接下來用c#代碼發送一次:
從官方文檔的示例中我們可以看到除了推送人的openid,還可以設置每個字段的顏色及跳轉地址。先可以定義以個tempmodel對象:
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
|
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 ; } } |
還有一個返回結果對象:
1
2
3
4
5
6
7
|
public class openapiresult { public int error_code { get; set; } public string error_msg { get; set; } public string msg_id { get; set; } } |
然后定義一個發送方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 最后就可以調用了:
1
2
3
4
5
6
7
8
9
10
11
12
|
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]
相關部分代碼:wx-template
官方文檔:https://mp.weixin.qq.com/advanced/tmplmsg?action=faq&token=1798469214&lang=zh_CN
全部錯誤類型:http://www.szdyhd.com/news/view/webdesign/2016/0614/519.html
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。
原文鏈接:http://www.cnblogs.com/stoneniqiu/p/7091501.html