Bootstrap

钉钉接入自定义机器人

实现

在钉钉群里创建个自定义机器人后会获得一个url,剩下的就是传参了。

安全设置如果选择IP地址(段),需要配置公网ip。可以在直接百度ip,就会显示出你的公网ip。

const URL = `https://oapi.dingtalk.com/robot/send?access_token=5ad7dc0e****`

function send() {
    fetch(URL, {
        method: 'POST',
        headers:{
            "Content-Type":"application/json"
        },
        body: JSON.stringify({
            "msgtype": "text",
            "text": {
                "content": "21321421"
            },
        })
    }).then(res => res.json()).then(data => { console.log("success>>", data) }).catch(console.log)
}

当然,如果在Linux命令行环境下,可以使用curl命令的方式发送

curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxx' \
 -H 'Content-Type: application/json' \
 -d '{"msgtype": "text","text": {"content":"我就是我, 是不一样的烟火"}}'

官方文档

;