Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lichangwei/a9d8a570517c06949dae249d1c06f1b8 to your computer and use it in GitHub Desktop.
Save lichangwei/a9d8a570517c06949dae249d1c06f1b8 to your computer and use it in GitHub Desktop.
腾讯云函数周报提醒
'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