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

28
scripts/debug-rank.js Normal file
View File

@@ -0,0 +1,28 @@
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 Rank...");
const json = await fetchJson(`${BASE_URL}/rank`);
console.log("Keys:", Object.keys(json));
if (json.movie && json.movie.length > 0) {
console.log("Top Movie:", json.movie[0].title, json.movie[0].imdbRatingValue);
}
if (json.tv && json.tv.length > 0) {
console.log("Top Series:", json.tv[0].title, json.tv[0].imdbRatingValue);
}
} catch (e) {
console.error("Debug failed:", e);
}
}
debug();