这就是页面,不过现在领取不了的,得2025/01/01开始才可以
想通过逆向来提前领取的歇歇,后端有检验
...
// 领取 NL 的路由
app.post('/claim', async (req, res) => {
if (new Intl.DateTimeFormat('en-US', { timeZone: 'Asia/Shanghai', year: 'numeric' }).format(new Date()) < 2025) {
return res.status(425).send('等到 2025!OK?');
}
...