first commit

This commit is contained in:
gotolombok
2026-01-31 17:21:32 +08:00
commit f839fbd63a
109 changed files with 19204 additions and 0 deletions

29
scripts/debug-trending.js Normal file
View File

@@ -0,0 +1,29 @@
const BASE_URL = "https://mapi.geofani.online/api";
async function fetchJson(url) {
const res = await fetch(url);
if (!res.ok) throw new Error(`Fetch failed: ${res.status}`);
return await res.json();
}
async function debug() {
try {
console.log("Fetching Trending...");
const json = await fetchJson(`${BASE_URL}/trending?page=1`);
console.log("Pager:", JSON.stringify(json.pager, null, 2));
if (json.pager) {
console.log("Total Count:", json.pager.totalCount);
} else {
console.log("No pager found");
}
console.log("Subject List Length:", json.subjectList ? json.subjectList.length : 0);
} catch (e) {
console.error("Debug failed:", e);
}
}
debug();