Files
000_notes/carousell/test.mjs
louiscklaw 8013ac2455 update,
2025-02-01 20:19:28 +08:00

17 lines
306 B
JavaScript

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);
});