zoukankan      html  css  js  c++  java
  • 微信带链接的文本消息推送

    微信推送消息时,推送带链接的文本消息

                                string token = “你的access_token”;
                                StringBuilder sb = new StringBuilder();
                                sb.Append("{"touser":"发送对象的openid","msgtype":"text","text":{"content":"您好!,请前往<a href='http://www.baidu.com '>百度</a>查看"}}");
                                string url = string.Format("https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token={0}", token);
                                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
                                byte[] requestBytes = Encoding.UTF8.GetBytes(sb.ToString());
                                request.Method = "POST";
                                request.ContentType = "application/x-www-form-urlencoded";
                                request.ContentLength = requestBytes.Length;
                                Stream requestStream = request.GetRequestStream();
                                requestStream.Write(requestBytes, 0, requestBytes.Length);
                                requestStream.Close();
                                HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                                StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.Default);
                                string backstr = sr.ReadToEnd();
                                
                                sr.Close();
                                response.Close();

    注意:

    超级链接中 URL 要用单引号 " ' "

  • 相关阅读:
    2804 最大最小数质因数
    5429 多重背包
    1851 越狱
    Gvim使用
    3622 假期
    4906 删数问题
    2845 排序的代价
    poj 3352
    常用正则表达式汇总
    功能简单例子
  • 原文地址:https://www.cnblogs.com/bsyblog/p/7339885.html
Copyright © 2011-2022 走看看