帝国CMS模板大全
www.admin99.cn
www.92cms.cn 帝国CMS模板下载站!,情怀,养站,二次开发!源码需求比较大的一站式会员下载,价更省!!!

C#微信开发之发送模板消息

我们需要将一些行为的进展消息推送给用户。除了短信,发送微信 模板消息 也是不错的选择。模板消息免费、精准到达、而且可以引导用户回到网站上来。但它有两个前提条件。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]

相关部分代码: 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

dy(“nrwz”);

赞(0)
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《C#微信开发之发送模板消息》
文章链接:https://www.admin99.cn/7709
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
QQ站长交流群:953950264

登录

找回密码

注册