1 Star 0 Fork 9

G_loneliness/元气提醒

forked from jimmyxuexue/元气提醒 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
connect.js 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
jimmyxuexue 提交于 2021-10-11 11:59 . v1.0.0
const koa = require("koa");
const sha1 = require("sha1"); // 加密
const cors = require("koa2-cors");
const { wechat } = require("./config");
const app = new koa();
app.use(cors());
app.use(async (ctx, next) => {
const token = wechat.token;
const signature = ctx.query.signature;
const nonce = ctx.query.nonce;
const timestamp = ctx.query.timestamp;
const echostr = ctx.query.echostr;
let str = [token, timestamp, nonce].sort().join("");
let sha = sha1(str);
if (sha == signature) {
ctx.body = echostr;
} else {
ctx.body = "wrong";
}
});
server.listen(8080, () => {
// /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT 在服务器运行时需要执行这段命令让服务器开启这个端口
console.log("server is running on port 8080!");
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/G_loneliness/daily-push-to-girlfriend.git
git@gitee.com:G_loneliness/daily-push-to-girlfriend.git
G_loneliness
daily-push-to-girlfriend
元气提醒
master

搜索帮助