钉钉如何请求webhook发送信息

代码:js

复制代码
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

const raw = JSON.stringify({
  "at": {
    "atMobiles": [
      "180xxxxxx"
    ],
    "atUserIds": [
      "user123"
    ],
    "isAtAll": false
  },
  "text": {
    "content": "我就是我, @user123 是不一样的烟火"
  },
  "msgtype": "text"
});

const requestOptions = {
  method: "POST",
  headers: myHeaders,
  body: raw,
  redirect: "follow"
};

fetch("https://oapi.dingtalk.com/robot/send?access_token=a20fc884379fd76bd27ad902fc7ec940f1c1573a3b468852372091474", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));

代码axios

复制代码
const axios = require('axios');
let data = JSON.stringify({
  "at": {
    "atMobiles": [
      "180xxxxxx"
    ],
    "atUserIds": [
      "user123"
    ],
    "isAtAll": false
  },
  "text": {
    "content": "我就是我, @user123 是不一样的烟火"
  },
  "msgtype": "text"
});

let config = {
  method: 'post',
  maxBodyLength: Infinity,
  url: 'https://oapi.dingtalk.com/robot/send?access_token=a20fc884379fd76bd27ad902fc7ec940f1c1573a3b468852372091474',
  headers: { 
    'Content-Type': 'application/json'
  },
  data : data
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});
相关推荐
生活百般滋味,人生需要笑对。 --佚名7 天前
springboot对接OK交易所实现发送钉钉通知
spring boot·后端·钉钉
走,带你去玩8 天前
uniapp运行到支付宝开发者工具
uni-app·钉钉
dragonchow1239 天前
钉钉机器人
机器人·钉钉
云上艺旅13 天前
K8S学习之基础四十:K8S配置altermanager发送告警到钉钉群
学习·云原生·容器·kubernetes·钉钉·prometheus
搭贝16 天前
从Excel到搭贝的转变过程
java·开发语言·低代码·钉钉·搭贝
慢热型网友.23 天前
打造智能钉钉机器人:借助智谱GLM-4-Flash实现高效智能回复(文末附源码)
人工智能·机器人·钉钉
沙尘暴炒饭1 个月前
钉钉快捷免登录 通过浏览器打开第三方系统,
钉钉
SmallBambooCode1 个月前
【WordPress】发布文章时自动通过机器人推送到钉钉
机器人·php·钉钉·博客·wordpress
jingwang-cs1 个月前
钉钉合同审批对接腾讯电子签,实现合同全流程自动化管理
运维·人工智能·后端·自动化·钉钉
jingwang-cs1 个月前
内外网隔离文件传输解决方案|系统与钉钉集成+等保合规,安全提升70%
安全·中间件·钉钉·安全架构