try { let body = JSON.parse($response.body); // Lấy timestamp hiện tại theo giờ hệ thống (UTC, tính theo giây) const now = Date.now(); if (body?.timestamp) { body.timestamp = 1000; } $done({ body: JSON.stringify(body) }); } catch (e) { $done({}); }