Loading

钉钉自定义机器人介绍及代码


添加自定义机器人

尚在编写中,具体内容可参考钉钉官方文档:https://developers.dingtalk.com/document/robots/custom-robot-access


使用Google Chrome 调试调用机器人

access_token作为链接直接复制入搜索框,按下F12打开调试界面,切换至Console,将相关代码复制入Console即可
image

由于需要使用jQueryajax方法,所以要引入

// 第一段需要复制的代码
var script = document.createElement('script');
script.setAttribute('type','text/javascript');
script.setAttribute('src',"https://code.jquery.com/jquery-3.1.1.min.js");
document.getElementsByTagName('head')[0].appendChild(script);

如果你足够高兴,那么你可以将jQuery的版本可以通过直接更改jQuery的地址为以下几个地址:

script.setAttribute('src',"jQuery的地址");

jQuery官网引用地址:
3.1.1版本:https://code.jquery.com/jquery-3.1.1.min.js
3.0.0版本:https://code.jquery.com/jquery-3.0.0.min.js
2.1.4版本:https://code.jquery.com/jquery-2.1.4.min.js
百度引用地址:http://libs.baidu.com/jquery/2.1.4/jquery.min.js
微软引用地址:http://ajax.aspnetcdn.com/ajax/jquery/jquery-2.1.4.min.js
等等……

以下这段代码是用于测试你的浏览器是否正常执行了POST请求的

// 第二段需要复制的代码
var url = "https://oapi.dingtalk.com/robot/send?access_token=此处替换为你的机器人的access_token",
    msg = '{"msgtype":"text", "text": {"content": "TEST."}}';
$.ajax({
    type: 'POST',
    url: url,
    data: msg,
    dataType: 'json',
    headers: {'Content-Type': 'application/json'},
    success: function(result){
        console.log(result.responseText);
    }
});

若输入代码后输出如图所示,且之前定义的机器人发送了内容为TEST.的消息则可以正常使用
image
接下来我们来解释一下第二段代码的具体使用方法(第一段没什么好讲的,直接复制就好):

// 第二段需要复制的代码
var url = "https://oapi.dingtalk.com/robot/send?access_token=此处替换为你的机器人的access_token",
    msg = `此处为发送消息的文本
或多行文本`;     // 若要发送多行消息,则需使用反单引号("`")括起文本
$.ajax({        // 发送POST
    type: 'POST',
    url: url,
    data: msg,
    dataType: 'json',
    headers: {'Content-Type': 'application/json'},
    success: function(result){
        console.log(result.responseText);
    }
});

发送消息文本格式请见另一篇文章https://www.cnblogs.com/howardzhangdqs/p/dingtalk_robot_instruction_2.html

使用Python调用机器人

尚在编写中……

使用Postman调用机器人

尚在编写中……

posted @ 2021-10-11 20:16  Howardzhangdqs  阅读(1565)  评论(0编辑  收藏  举报