This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Script này sẽ in ra toàn bộ thông tin của yêu cầu ra console log | |
| console.log("===== Yêu cầu Jagat bị bắt ====="); | |
| console.log("URL: " + $request.url); | |
| console.log("Method: " + $request.method); | |
| console.log("Headers: " + JSON.stringify($request.headers, null, 2)); | |
| console.log("Body: " + $request.body); | |
| console.log("================================"); | |
| // Không làm gì cả, chỉ cho yêu cầu đi tiếp | |
| $done({}); |