钉钉群聊天机器人

Posted ITdfq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了钉钉群聊天机器人相关的知识,希望对你有一定的参考价值。

钉钉群机器人

项目封装了钉钉群机器人的发送方法,只需要输入ACCESS_TOKEN和SECRET,选择合适的发送类型,就可以一键发送。

食用

  1. 添加pom依赖

     	<repositories>
            <repository>
                <id>jitpack.io</id>
                <url>https://www.jitpack.io</url>
            </repository>
        </repositories>
         <dependencies>
            <dependency>
                <groupId>com.gitee.godchin</groupId>
                <artifactId>dingding_Utils</artifactId>
                <version>1.0.0</version>
            </dependency>
         </dependencies>
    
  2. 获取access_token和秘钥

    https://oapi.dingtalk.com/robot/send?access_token=####
    获取access_token:

  3. 调用DingDingService.send()方法发送消息,在参数中设置access_token和秘钥。
    更多发送参数,参考:钉钉机器人文档

  4. 测试

     @Test
        void test()  
            TextMsg textMsg = new TextMsg();
            textMsg.setSecret(SECRET);
            textMsg.setAccessToken(ACCESS_TOKEN);
            textMsg.setAt(new TextMsg.At(null, null, false));
            textMsg.setText(new TextMsg.Text("sdsarwhfnsduhfsbhfiadfdusfwefwe"));
            DingResult send = DingDingService.send(textMsg);
            System.out.println(send);
        
    

结果:


源码地址:码云

以上是关于钉钉群聊天机器人的主要内容,如果未能解决你的问题,请参考以下文章

钉钉群聊天机器人

python 小脚本升级-- 钉钉群聊天机器人

cgai-DD钉钉群机器人python3 API

如何申请钉钉机器人接口

钉钉群机器人怎么弄 钉钉群机器人设置方法

巧用钉钉群机器人定时推送单图文消息