This commit is contained in:
louiscklaw
2025-02-01 20:19:28 +08:00
commit 8013ac2455
274 changed files with 26971 additions and 0 deletions

16
carousell/test.mjs Normal file
View File

@@ -0,0 +1,16 @@
import axios from "axios";
const options = {
method: "GET",
url: "https://www.carousell.com.hk/p/1253932419/",
headers: {},
maxRedirects: 5,
};
axios
.request(options)
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});