博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python3 钉钉群机器人 webhook
阅读量:5010 次
发布时间:2019-06-12

本文共 545 字,大约阅读时间需要 1 分钟。

import requestsimport jsonurl='https://oapi.dingtalk.com/robot/send?access_token=替换成你自己的toten'program={"msgtype": "text","text": {
"content": "123!"},}headers={
'Content-Type': 'application/json'}f=requests.post(url,data=json.dumps(program),headers=headers)

官方文档:

https://open-doc.dingtalk.com/docs/doc.htm?spm=a219a.7629140.0.0.EUIOU6&treeId=257&articleId=105735&docType=1

创建机器人:

https://open-doc.dingtalk.com/docs/doc.htm?spm=a219a.7629140.0.0.Cl8b5a&treeId=257&articleId=105733&docType=1

转载于:https://www.cnblogs.com/itfat/p/9177435.html

你可能感兴趣的文章
CAGradientLayer 透明渐变注意地方(原创)
查看>>
织梦DEDE多选项筛选_联动筛选功能的实现_二次开发
查看>>
iOS关于RunLoop和Timer
查看>>
SQL处理层次型数据的策略对比:Adjacency list vs. nested sets: MySQL【转载】
查看>>
已存在同名的数据库,或指定的文件无法打开或位于 UNC 共享目录中。
查看>>
MySQL的随机数函数rand()的使用技巧
查看>>
thymeleaf+bootstrap,onclick传参实现模态框中遇到的错误
查看>>
python字符串实战
查看>>
wyh的物品(二分)
查看>>
12: xlrd 处理Excel文件
查看>>
综合练习:词频统计
查看>>
中文url编码乱码问题归纳整理一
查看>>
Cesium应用篇:3控件(3)SelectionIndicator& InfoBox
查看>>
58. Length of Last Word(js)
查看>>
前端面试题汇总(持续更新...)
查看>>
如何成为F1车手?
查看>>
QT自定义消息
查看>>
Save (Not Permitted) Dialog Box
查看>>
装饰模式(Decorator)
查看>>
任务13:在Core Mvc中使用Options
查看>>