首页
关于
留言
友联
更多
壁纸
统计
Search
1
VUE codemirror插件 设置回显对象
54 阅读
2
js前端密码校验
53 阅读
3
HTML媒体查询Demo
48 阅读
4
Vue 和element的实现table表格数据的模糊匹配搜索
36 阅读
5
python 钉钉机器人推送消息
29 阅读
默认分类
前端
后端
其他
登录
Search
标签搜索
python
React
Django
爬虫
css
2c
累计撰写
19
篇文章
累计收到
12
条评论
首页
栏目
默认分类
前端
后端
其他
页面
关于
留言
友联
壁纸
统计
搜索到
2
篇与
的结果
2022-04-28
python 钉钉机器人推送消息
import requests import time import hmac import hashlib import base64 import urllib.parse timestamp = str(round(time.time() * 1000)) secret = 'this is secret' secret_enc = secret.encode('utf-8') string_to_sign = '{}\n{}'.format(timestamp, secret) string_to_sign_enc = string_to_sign.encode('utf-8') hmac_code = hmac.new(secret_enc,string_to_sign_enc,digestmod=hashlib.sha256).digest() sign = urllib.parse.quote_plus(base64.b64encode(hmac_code)) access_token = '' url = 'https://oapi.dingtalk.com/robot/send?access_token={}×tamp={}&sign={}'.format(access_token,timestamp, sign) # 获取当前时间 str_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) # 发送的消息格式 data = {"msgtype": "markdown", "markdown": { "title": "测试已完成", "text":"啦啦啦", }, "at": {"atMobiles": ["15386174586"]} } headers = {'Content-Type': 'application/json'} message = requests.post(url, json.dumps(data), headers=headers).json()
2022年04月28日
29 阅读
0 评论
0 点赞
2022-04-28
python 爬虫
python
2022年04月28日
28 阅读
4 评论
0 点赞