Created
May 27, 2022 00:36
-
-
Save lichangwei/a9d8a570517c06949dae249d1c06f1b8 to your computer and use it in GitHub Desktop.
腾讯云函数周报提醒
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
exports.main_handler = async (event, context, callback) => { | |
const axios = require("axios"); | |
const url = | |
"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=f0dae1fb-43d9-4047-a9e5-78989503e238"; | |
await axios.post(url, { | |
msgtype: "text", | |
text: { | |
content: "又一天过去了,今天我做了什么,收获了什么,记得写周报总结一下吧", | |
mentioned_list: ["@all"] | |
} | |
}); | |
return event; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment