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

使用Google Chrome 调试调用机器人

由于需要使用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=XXXXX",
    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);
    }
});
上一篇:高可用之keepalived


下一篇:re | frida | hook windows进程