server 酱全面转向企业微信推送,之后在 github 发现了基于腾讯云函数的企业微信推送( https://github.com/zyh94946/wx-msg-push-tencent ),最近研究了下发现企业微信官方的 api 还是挺简单的,于是基于 vercel 搭建了一个和上面两个差不多的,欢迎大家围观。
GitHub 地址: https://github.com/xJogger/wx_push_vercel
1
cherbim 2021-05-26 14:03:26 +08:00 via Android
直接 CF worker 把企业微信的 post 去请求转换成 get 请求,简单粗暴
|
2
abersheeran 2021-05-26 14:49:24 +08:00
啊这……我觉得好像是没必要封装成 Serverless 函数
```python def send_message(text: str) -> None: """ 发送 markdown 格式的消息 https://work.weixin.qq.com/help?doc_id=13376 """ requests.post( WECHAT_BOT_URL, json={"msgtype": "markdown", "markdown": {"content": text}} ) ``` |
3
xJogger OP @abersheeran 这个好像挺好玩的,不过机器人能发消息到微信么。改天我研究研究。
|