当前位置:网站首页>Dingtalk 发送消息
Dingtalk 发送消息
2022-07-02 10:14:00 【阳光下的小鱼】
依赖包:
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
<version>2.0.0</version>
</dependency>
代码实现:
package com.sq.proxy.job;
import com.alibaba.fastjson.JSON;
import com.dingtalk.api.DefaultDingTalkClient;
import com.dingtalk.api.DingTalkClient;
import com.dingtalk.api.request.OapiRobotSendRequest;
import com.dingtalk.api.response.OapiRobotSendResponse;
import org.apache.commons.codec.binary.Base64;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import java.net.URLEncoder;
import java.util.Arrays;
public class DingTalk3 {
static String webHook = "https://oapi.dingtalk.com/robot/send?access_token=xxx";
public static void main(String[] args_) throws Exception {
Long timestamp = System.currentTimeMillis();
String secret = "SEC6cd99f5d8e817df66c5759c246897b51c6be82a4df8f2ce6b8b39a7adfa3bfff";
String stringToSign = timestamp + "\n" + secret;
Mac mac = Mac.getInstance("HmacSHA256");
mac.init(new SecretKeySpec(secret.getBytes("UTF-8"), "HmacSHA256"));
byte[] signData = mac.doFinal(stringToSign.getBytes("UTF-8"));
String sign = URLEncoder.encode(new String(Base64.encodeBase64(signData)),"UTF-8");
DingTalkClient client = new DefaultDingTalkClient(webHook+"&sign="+sign+"×tamp="+timestamp);
OapiRobotSendRequest request = new OapiRobotSendRequest();
request.setMsgtype("text");
OapiRobotSendRequest.Text text = new OapiRobotSendRequest.Text();
text.setContent("测试文本消息");
request.setText(text);
OapiRobotSendRequest.At at = new OapiRobotSendRequest.At();
at.setAtMobiles(Arrays.asList("150xx41","137yyy64"));
// isAtAll类型如果不为Boolean,请升级至最新SDK
at.setIsAtAll(true);
// at.setAtUserIds(Arrays.asList("109929","32099"));
request.setAt(at);
request.setMsgtype("link");
OapiRobotSendRequest.Link link = new OapiRobotSendRequest.Link();
link.setMessageUrl("https://www.dingtalk.com/");
link.setPicUrl("");
link.setTitle("时代的火车向前开");
link.setText("这个即将发布的新版本,创始人xx称它为红树林。而在此之前,每当面临重大升级,产品经理们都会取一个应景的代号,这一次,为什么是红树林");
request.setLink(link);
// request.setMsgtype("markdown");
// OapiRobotSendRequest.Markdown markdown = new OapiRobotSendRequest.Markdown();
// markdown.setTitle("杭州天气");
// markdown.setText("#### 杭州天气 @156xxxx8827\n" +
// "> 9度,西北风1级,空气良89,相对温度73%\n\n" +
// "> \n" +
// "> ###### 10点20分发布 [天气](http://www.thinkpage.cn/) \n");
// request.setMarkdown(markdown);
OapiRobotSendResponse response = client.execute(request);
System.out.println(JSON.toJSON(response));
}
}
常见问题:
1:如果要@某些人怎么实现?
1.1 将要@的人的手机号放到setAtMobiles方法里
1.2 在text消息里@手机号 来实现。
参考:
边栏推荐
- 基于ssm+jsp框架实现的学生选课信息管理系统【源码+数据库】
- [technology development-22]: rapid overview of the application and development of network and communication technology-2-communication Technology
- Engineers who can't read device manuals are not good cooks
- Unity skframework framework (XII), score scoring module
- 运维必备——ELK日志分析系统
- Find love for speed in F1 delta time Grand Prix
- Record idea shortcut keys
- Unity skframework Framework (XVI), package manager Development Kit Manager
- Explanation: here is your UFO, Goldbach conjecture
- 每日一题:1175.质数排列
猜你喜欢
How to modify the error of easydss on demand service sharing time?
(6) Web security | penetration test | network security encryption and decryption ciphertext related features, with super encryption and decryption software
[technology development-22]: rapid overview of the application and development of network and communication technology-2-communication Technology
Student course selection information management system based on ssm+jsp framework [source code + database]
Solution: Compression Technology (original version and sequel version)
leetcode621. 任务调度器
net share
When tidb meets Flink: tidb efficiently enters the lake "new play" | tilaker team interview
无向图的桥
Runhe hi3516 development board openharmony small system and standard system burning
随机推荐
linux下清理系统缓存并释放内存
MySQL: Invalid GIS data provided to function st_ geometryfromtext
Chinese name extraction (toy code - accurate head is too small, right to play)
leetcode621. task scheduler
解答:EasyDSS视频点播时音频是否可以设置为默认开启?
SSL证书的分类有哪些?如何选择合适的SSL证书?
[OpenGL] notes 29. Advanced lighting (specular highlights)
研究表明“气味相投”更易成为朋友
文件的下载与图片的预览
de4000h存储安装配置
Pointer from entry to advanced (1)
(6) Web security | penetration test | network security encryption and decryption ciphertext related features, with super encryption and decryption software
(POJ - 1308)Is It A Tree? (tree)
(7) Web security | penetration testing | how does network security determine whether CND exists, and how to bypass CND to find the real IP
I did it with two lines of code. As a result, my sister had a more ingenious way
OpenApi-Generator:简化RESTful API开发流程
On flow delivery between microservices
【云原生数据库】遇到慢SQL该怎么办(上)?
Essential for operation and maintenance - Elk log analysis system
Astro learning notes