zoukankan      html  css  js  c++  java
  • 钉钉机

     string url = "https://oapi.dingtalk.com/robot/send?access_token=847bc045c802beaba749aec846f91901730f3b185ca";

    var bl = new { msgtype = "text", text = new { content = "不一样的烟火" } };
                string cs = new JavaScriptSerializer().Serialize(bl);
                string jg = HttpPost(url, cs);
                MessageBox.Show(jg);

      private string HttpPost(string Url, string postDataStr)
            {

                string strURL = Url;
                System.Net.HttpWebRequest request;
                request = (System.Net.HttpWebRequest)WebRequest.Create(strURL);
                request.Method = "POST";
                request.ContentType = "application/json;charset=UTF-8";
                string paraUrlCoded = postDataStr;
                byte[] payload;
                payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
                request.ContentLength = payload.Length;
                Stream writer = request.GetRequestStream();
                writer.Write(payload, 0, payload.Length);
                writer.Close();
                System.Net.HttpWebResponse response;
                response = (System.Net.HttpWebResponse)request.GetResponse();
                System.IO.Stream s;
                s = response.GetResponseStream();
                string StrDate = "";
                string strValue = "";
                StreamReader Reader = new StreamReader(s, Encoding.UTF8);
                while ((StrDate = Reader.ReadLine()) != null)
                {
                    strValue += StrDate + " ";
                }
                return strValue;


            }

  • 相关阅读:
    js 中 undefined 和null 的区别
    【Gym103107E/黑龙江省赛16thE】Elastic Search(Trie树性质+ac自动机性质)
    不等概率抽卡的毕业期望次数
    博客园无法用IE进行登录
    Web项目开发小结
    各位看官,自己觉着喜欢的存到手机里面
    MVC控制器执行重定向
    吐了个槽o.o
    浏览器设置不缓存的方法
    关于A+B
  • 原文地址:https://www.cnblogs.com/xiangxiong/p/7909723.html
Copyright © 2011-2022 走看看