本帖最后由 hlp7777777 于 2025-1-23 20:28 编辑
基于wxpusher的微信挪车通知一一防止手机号码泄露
可以部署在自己的服务器上把链接转成二维码打印出来放车上
建议使用severless,可以使用Cloudflare的Workers(免费 -- 就是国内访问需要自己买个域名,域名也可以免费代{过}{滤}理在Cloudflare上)
在论坛上看到有人分享觉得不错,优化了下代码
1.增加了幂等性
2.把个人信息进行隐藏
3.优化代码整体性能和模块化
更新后的代码已上传Github:https://github.com/hlp777/Move-Car-Notice 觉得不错的请点个Star,如果你有更好的想法欢迎Fork来提交PR
关键更新的代码:
async function notifyOwner() {
const currentTime = Date.now();
if (currentTime - lastNotificationTime < cooldownPeriod) {
return new Response('请等待7秒后再次发送通知。', { status: 503 });
}
lastNotificationTime = currentTime;
try {
const response = await fetch("https://wxpusher.zjiecode.com/api/send/message", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
appToken: wxpusherAppToken,
content: "您好,有人需要您挪车,请及时处理。",
contentType: 1,
uids: wxpusherUIDs
})
});
const data = await response.json();
if (data.code === 1000) {
return new Response('通知已发送!', { status: 200 });
} else {
return new Response(`通知发送失败,请稍后重试。错误代码: ${data.code}`, { status: 500 });
}
} catch (error) {
console.error("Error sending notification:", error);
return new Response('通知发送出错,请检查网络连接。', { status: 500 });
}
}
源码文件:
movecarv2.zip
(1.82 KB, 下载次数: 23)
|