dptxa-proxy / scratch /test_fetch.js
TXAVLOG
Deploy DPTXA to Hugging Face Spaces
4bea261
Raw
History Blame Contribute Delete
596 Bytes
async function test() {
const targetUrl = 'https://v7.kkphimplayer7.com/20260514/LGQKiMAz/preview.jpg';
try {
const response = await fetch(targetUrl, {
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('Status:', response.status);
console.log('Headers:', JSON.stringify(Object.fromEntries(response.headers.entries()), null, 2));
} catch (err) {
console.error('Error:', err);
}
}
test();