博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
钉钉机器人
阅读量:5301 次
发布时间:2019-06-14

本文共 1456 字,大约阅读时间需要 4 分钟。

普通发送消息
Map
params = new HashMap<>(3); params.put("msgtype", "text"); Map
text = new HashMap<>(1); text.put("content", content); params.put("text", text); String dingUrl = "复制你的机器人地址如:https://oapi.dingtalk.com/robot/send?access_token=jjjjjjiiiiiiii"; HttpWebUtils.doPostJson(dingUrl, params, "UTF-8", 3000, 3000);

  

public static String doPostJson(String url, Map
reqDataMap, String charset, int socketTimeout, int connectTimeout) throws IOException { CloseableHttpClient httpClient = HttpClients.createDefault(); HttpPost httpPost = new HttpPost(url); StringEntity sn = new StringEntity(JSONObject.toJSONString(reqDataMap), "UTF-8"); sn.setContentEncoding(charset); sn.setContentType("application/json; charset=UTF-8"); httpPost.setEntity(sn); //LOG.biz("************** httpPost url: " + url); //LOG.biz("** Header: " + JSON.toJSONString(httpPost.getAllHeaders())); RequestConfig requestConfig = RequestConfig.custom().setSocketTimeout(socketTimeout).setConnectTimeout(connectTimeout).build();//设置请求和传输超时时间 httpPost.setConfig(requestConfig); CloseableHttpResponse response = httpClient.execute(httpPost); HttpEntity httpEntity = response.getEntity(); return EntityUtils.toString(httpEntity, charset); }}

 

转载于:https://www.cnblogs.com/ysg520/p/11242728.html

你可能感兴趣的文章
机器视觉:SSD Single Shot MultiBox Detector
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>