Spaces:
Sleeping
Sleeping
File size: 795 Bytes
4bea261 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
async function test() {
const variations = [
'https://v7.kkphimplayer7.com/20260514/LGQKiMAz/preview.jpg',
'https://v7.kkphimplayer7.com/20260514/LGQKiMAz/thumb.jpg',
'https://v7.kkphimplayer7.com/20260514/LGQKiMAz/index.jpg',
'https://v7.kkphimplayer7.com/20260514/LGQKiMAz/preview.png'
];
for (const url of variations) {
try {
const response = await fetch(url, {
headers: {
'Referer': 'https://v7.kkphimplayer7.com/',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36'
}
});
console.log(`URL: ${url} -> Status: ${response.status}`);
} catch (err) {
console.error(`URL: ${url} -> Error: ${err.message}`);
}
}
}
test();
|